diff options
author | Brian Behlendorf <[email protected]> | 2009-01-20 21:03:02 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-01-20 21:03:02 -0800 |
commit | 15c9eb903fb93e1c9c6b59f97da0e59857645b9d (patch) | |
tree | ee6ab6f196448a78647ded8f62a6675165af3549 /scripts/zpool-config/file-raidz.sh | |
parent | 40c5baafa20d28d2f90219a16d5f9ae5af7f7fd3 (diff) |
Add 4 basic file based testr configs
Diffstat (limited to 'scripts/zpool-config/file-raidz.sh')
-rw-r--r-- | scripts/zpool-config/file-raidz.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/scripts/zpool-config/file-raidz.sh b/scripts/zpool-config/file-raidz.sh new file mode 100644 index 000000000..686748907 --- /dev/null +++ b/scripts/zpool-config/file-raidz.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# +# 4 File Raid-Z Configuration +# + +FILES="/tmp/zpool-vdev0 \ + /tmp/zpool-vdev1 \ + /tmp/zpool-vdev2 \ + /tmp/zpool-vdev3" + +zpool_create() { + for FILE in ${FILES}; do + msg "Creating ${FILE}" + rm -f ${FILE} || exit 1 + dd if=/dev/zero of=${FILE} bs=1024k count=256 &>/dev/null || + die "Error $? creating ${FILE}" + done + + msg ${CMDDIR}/zpool/zpool create raidz ${ZPOOL_NAME} ${FILES} + ${CMDDIR}/zpool/zpool create raidz ${ZPOOL_NAME} ${FILES} || exit 1 +} + +zpool_destroy() { + msg ${CMDDIR}/zpool/zpool destroy ${ZPOOL_NAME} + ${CMDDIR}/zpool/zpool destroy ${ZPOOL_NAME} + + for FILE in ${FILES}; do + msg "Removing ${FILE}" + rm -f ${FILE} || exit 1 + done +} |