package/nfs-utils: fix indentation

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>
This commit is contained in:
Maxime Hadjinlian 2016-07-03 18:46:59 +02:00 committed by Thomas Petazzoni
parent 5b36e65177
commit 5c2982bf8c

View File

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