From: Gunnar Beutner Date: Sun, 3 Jul 2011 00:35:58 +0000 (+0200) Subject: Fixed indentation in the zfs.lunar init script. X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=commitdiff_plain;h=0f4524cca43b1718d54970fcaf0201541733903c;p=zfs.git 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 --- diff --git a/etc/init.d/zfs.lunar b/etc/init.d/zfs.lunar index 4512151..a6ec5c4 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); ;;