package/nfs-utils: fix indentation
authorMaxime Hadjinlian <maxime.hadjinlian@gmail.com>
Sun, 3 Jul 2016 16:46:59 +0000 (18:46 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 4 Jul 2016 09:38:41 +0000 (11:38 +0200)
Use tabs everywhere still we don't have an official policy.

Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/nfs-utils/S60nfs

index 2d4e082a0b3fac65113cbb022a919173b5c19b55..893b1e49a67d6027363d486678c2da13aaca2e4b 100755 (executable)
@@ -17,7 +17,7 @@ CFG_FILE=/etc/default/nfsd
 
 NR_THREADS=2
 if [ -f "${CFG_FILE}" ]; then
-    . "${CFG_FILE}"
+       . "${CFG_FILE}"
 fi
 
 
@@ -66,23 +66,23 @@ stop() {
 
 # See how we were called.
 case "$1" in
-  start)
-       start
-       ;;
-  stop)
-       stop
-       ;;
-  restart)
-       stop
-       start
-       ;;
-  reload)
-       /usr/sbin/exportfs -r
-       touch /var/lock/subsys/nfs
-       ;;
-  *)
-       echo "Usage: $0 {start|stop|restart|reload}"
-       exit 1
+       start)
+               start
+               ;;
+       stop)
+               stop
+               ;;
+       restart)
+               stop
+               start
+               ;;
+       reload)
+               /usr/sbin/exportfs -r
+               touch /var/lock/subsys/nfs
+               ;;
+       *)
+               echo "Usage: $0 {start|stop|restart|reload}"
+               exit 1
 esac
 
 exit 0