Fixed indentation in the zfs.lunar init script.
authorGunnar Beutner <gunnar@beutner.name>
Sun, 3 Jul 2011 00:35:58 +0000 (02:35 +0200)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 5 Jul 2011 18:25:48 +0000 (11:25 -0700)
One of the blocks in the init script wasn't indented properly.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
etc/init.d/zfs.lunar

index 4512151..a6ec5c4 100644 (file)
@@ -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);
 
 
   ;;