mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
99d3ece847
Allow the caller of the zpool-create.sh script to override the default path where file vdevs are created. This allows for greated flexibilty when scripting. Additionally, update the default path from /tmp/ to /var/tmp/ because these days /tmp/ is likely a ramdisk. Even though these files are sparse they may grow large in which case they should be backed by a physical device. Signed-off-by: Richard Yao <ryao@gentoo.org> Signed-off-by: Tim Chase <tim@chase2k.com> Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #2120
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
#!/bin/bash
|
|
#
|
|
# 4 Device Loopback Raid-0 Configuration
|
|
#
|
|
|
|
FILEDIR=${FILEDIR:-/var/tmp}
|
|
FILES=${FILES:-"$FILEDIR/file-vdev0 $FILEDIR/file-vdev1 \
|
|
$FILEDIR/file-vdev2 $FILEDIR/file-vdev3"}
|
|
DEVICES=""
|
|
|
|
zpool_create() {
|
|
check_loop_utils
|
|
|
|
for FILE in ${FILES}; do
|
|
DEVICE=`unused_loop_device`
|
|
msg "Creating ${FILE} using loopback device ${DEVICE}"
|
|
rm -f ${FILE} || exit 1
|
|
dd if=/dev/zero of=${FILE} bs=1024k count=0 seek=256 \
|
|
&>/dev/null || die "Error $? creating ${FILE}"
|
|
${LOSETUP} ${DEVICE} ${FILE} ||
|
|
die "Error $? creating ${FILE} -> ${DEVICE} loopback"
|
|
DEVICES="${DEVICES} ${DEVICE}"
|
|
done
|
|
|
|
msg ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} raidz2 ${DEVICES}
|
|
${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} raidz2 ${DEVICES} || exit 1
|
|
}
|
|
|
|
zpool_destroy() {
|
|
msg ${ZPOOL} destroy ${ZPOOL_NAME}
|
|
${ZPOOL} destroy ${ZPOOL_NAME}
|
|
|
|
# Delay to ensure device is closed before removing loop device
|
|
sleep 1
|
|
|
|
for FILE in ${FILES}; do
|
|
DEVICE=`${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"
|
|
rm -f ${FILE} || exit 1
|
|
done
|
|
}
|