Fixed indentation in the zfs.lunar init script.
One of the blocks in the init script wasn't indented properly. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
5a52105925
commit
0f4524cca4
|
@ -31,16 +31,16 @@ case $1 in
|
||||||
# do, thus i'm not breaking here.
|
# do, thus i'm not breaking here.
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# mount the filesystems
|
# mount the filesystems
|
||||||
while IFS= read -r -d $'\n' dev; do
|
while IFS= read -r -d $'\n' dev; do
|
||||||
mdev=$(echo "$dev" | awk '{ print $1; }')
|
mdev=$(echo "$dev" | awk '{ print $1; }')
|
||||||
echo -n "mounting $mdev..."
|
echo -n "mounting $mdev..."
|
||||||
if `zfs mount $mdev`; then
|
if `zfs mount $mdev`; then
|
||||||
echo -e "done";
|
echo -e "done";
|
||||||
else
|
else
|
||||||
echo -e "failed";
|
echo -e "failed";
|
||||||
fi
|
fi
|
||||||
done < <(zfs list -H);
|
done < <(zfs list -H);
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue