From: Maxime Hadjinlian Date: Sun, 3 Jul 2016 16:46:59 +0000 (+0200) Subject: package/nfs-utils: fix indentation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5c2982bf8c0645407ccd692205c800fbc44319b4;p=buildroot.git package/nfs-utils: fix indentation Use tabs everywhere still we don't have an official policy. Signed-off-by: Maxime Hadjinlian Signed-off-by: Thomas Petazzoni --- diff --git a/package/nfs-utils/S60nfs b/package/nfs-utils/S60nfs index 2d4e082a0b..893b1e49a6 100755 --- a/package/nfs-utils/S60nfs +++ b/package/nfs-utils/S60nfs @@ -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