summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorGunnar Beutner <[email protected]>2011-07-03 02:35:58 +0200
committerBrian Behlendorf <[email protected]>2011-07-05 11:25:48 -0700
commit0f4524cca43b1718d54970fcaf0201541733903c (patch)
treeea2333c9f48d282c8ca60ff8fdfc314d69da3239 /etc
parent5a52105925e461e45f4948fc77695b25d3fa3009 (diff)
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 <[email protected]>
Diffstat (limited to 'etc')
-rw-r--r--etc/init.d/zfs.lunar20
1 files changed, 10 insertions, 10 deletions
diff --git a/etc/init.d/zfs.lunar b/etc/init.d/zfs.lunar
index 4512151c2..a6ec5c4dd 100644
--- a/etc/init.d/zfs.lunar
+++ b/etc/init.d/zfs.lunar
@@ -31,16 +31,16 @@ case $1 in
# do, thus i'm not breaking here.
fi
- # mount the filesystems
- while IFS= read -r -d $'\n' dev; do
- mdev=$(echo "$dev" | awk '{ print $1; }')
- echo -n "mounting $mdev..."
- if `zfs mount $mdev`; then
- echo -e "done";
- else
- echo -e "failed";
- fi
- done < <(zfs list -H);
+ # mount the filesystems
+ while IFS= read -r -d $'\n' dev; do
+ mdev=$(echo "$dev" | awk '{ print $1; }')
+ echo -n "mounting $mdev..."
+ if `zfs mount $mdev`; then
+ echo -e "done";
+ else
+ echo -e "failed";
+ fi
+ done < <(zfs list -H);
;;