Merge commit 'refs/top-bases/linux-have-zvol' into linux-have-zvol
This commit is contained in:
commit
1974b80b65
|
@ -16,8 +16,8 @@ zpool_create() {
|
|||
die "Error $? creating ${FILE}"
|
||||
done
|
||||
|
||||
msg ${CMDDIR}/zpool/zpool create raidz ${ZPOOL_NAME} ${FILES}
|
||||
${CMDDIR}/zpool/zpool create raidz ${ZPOOL_NAME} ${FILES} || exit 1
|
||||
msg ${CMDDIR}/zpool/zpool create ${ZPOOL_NAME} raidz ${FILES}
|
||||
${CMDDIR}/zpool/zpool create ${ZPOOL_NAME} raidz ${FILES} || exit 1
|
||||
}
|
||||
|
||||
zpool_destroy() {
|
||||
|
|
|
@ -16,8 +16,8 @@ zpool_create() {
|
|||
die "Error $? creating ${FILE}"
|
||||
done
|
||||
|
||||
msg ${CMDDIR}/zpool/zpool create raidz2 ${ZPOOL_NAME} ${FILES}
|
||||
${CMDDIR}/zpool/zpool create raidz2 ${ZPOOL_NAME} ${FILES} || exit 1
|
||||
msg ${CMDDIR}/zpool/zpool create ${ZPOOL_NAME} raidz2 ${FILES}
|
||||
${CMDDIR}/zpool/zpool create ${ZPOOL_NAME} raidz2 ${FILES} || exit 1
|
||||
}
|
||||
|
||||
zpool_destroy() {
|
||||
|
|
|
@ -14,7 +14,7 @@ zpool_create() {
|
|||
DEVICE=`/sbin/losetup -f`
|
||||
msg "Creating ${FILE} using loopback device ${DEVICE}"
|
||||
rm -f ${FILE} || exit 1
|
||||
dd if=/dev/zero of=${FILE} bs=1024k count=256 status=noxfer &>/dev/null ||
|
||||
dd if=/dev/zero of=${FILE} bs=1024k count=256 &>/dev/null ||
|
||||
die "Error $? creating ${FILE}"
|
||||
losetup ${DEVICE} ${FILE} ||
|
||||
die "Error $? creating ${FILE} -> ${DEVICE} loopback"
|
||||
|
@ -30,7 +30,7 @@ zpool_destroy() {
|
|||
${CMDDIR}/zpool/zpool destroy ${ZPOOL_NAME}
|
||||
|
||||
for FILE in ${FILES}; do
|
||||
DEVICE=`/sbin/losetup -a | grep ${FILE} | head -n1 | cut -f1 -d:`
|
||||
DEVICE=`/sbin/losetup -a | grep ${FILE} | head -n1|cut -f1 -d:`
|
||||
msg "Removing ${FILE} using loopback device ${DEVICE}"
|
||||
losetup -d ${DEVICE} ||
|
||||
die "Error $? destroying ${FILE} -> ${DEVICE} loopback"
|
||||
|
|
Loading…
Reference in New Issue