package/rsyslog: fix S01rsyslogd indentation

Don't mix spaces and tabs, only use tabs

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Fabrice Fontaine 2019-04-16 14:13:38 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 4a12ea24ae
commit 95a8655fe2

View File

@ -41,13 +41,13 @@ restart() {
} }
case "$1" in case "$1" in
start|stop|restart) start|stop|restart)
"$1";; "$1";;
reload) reload)
# Restart, since there is no true "reload" feature (does not # Restart, since there is no true "reload" feature (does not
# reconfigure/restart on SIGHUP, just closes all open files). # reconfigure/restart on SIGHUP, just closes all open files).
restart;; restart;;
*) *)
echo "Usage: $0 {start|stop|restart|reload}" echo "Usage: $0 {start|stop|restart|reload}"
exit 1 exit 1
esac esac