diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-07-25 13:21:59 +0100 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-08-07 12:11:14 +0100 |
commit | fa64dd3e78cdca393ae1658db2e3dc363b4b013f (patch) | |
tree | 8ab507c68bc54a521b187c3049006b162f134b3e | |
parent | 6efcaf2738deb70048343638310d7bd39288245b (diff) |
Fix sysvinit case indentation
-rwxr-xr-x | config/sysvinit.example | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/config/sysvinit.example b/config/sysvinit.example index d63535fec..b2ca25c9c 100755 --- a/config/sysvinit.example +++ b/config/sysvinit.example @@ -42,20 +42,20 @@ restart_daemon() { } case "$1" in - start) - start_daemon - ;; - stop) - stop_daemon - ;; - reload|restart|force-reload) - restart_daemon - ;; - *) - N=/etc/init.d/$NAME - echo "Usage: $N {start|stop|reload|restart|force-reload}" >&2 - exit 1 - ;; + start) + start_daemon + ;; + stop) + stop_daemon + ;; + reload|restart|force-reload) + restart_daemon + ;; + *) + N=/etc/init.d/$NAME + echo "Usage: $N {start|stop|reload|restart|force-reload}" >&2 + exit 1 + ;; esac exit 0 |