netsnmp: fix tab/space formatting in init.d script

The S59snmpd script has a strange mix of tabs and spaces.  Replace
tabs with spaces, and also remove unnecessary line continuations
from the start-stop-daemon lines, as none of them go beyond 80
columns.

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Danomi Manchego 2014-03-27 22:08:46 -04:00 committed by Peter Korsgaard
parent 3a7aee7742
commit 9ef8f8e9c5

View File

@ -42,14 +42,12 @@ case "$1" in
start) start)
echo -n "Starting network management services:" echo -n "Starting network management services:"
if [ "$SNMPDRUN" = "yes" -a -f /etc/snmp/snmpd.conf ]; then if [ "$SNMPDRUN" = "yes" -a -f /etc/snmp/snmpd.conf ]; then
start-stop-daemon -q -S -x /usr/sbin/snmpd \ start-stop-daemon -q -S -x /usr/sbin/snmpd -- $SNMPDOPTS
-- $SNMPDOPTS echo -n " snmpd"
echo -n " snmpd"
fi fi
if [ "$TRAPDRUN" = "yes" -a -f /etc/snmp/snmptrapd.conf ]; then if [ "$TRAPDRUN" = "yes" -a -f /etc/snmp/snmptrapd.conf ]; then
start-stop-daemon -q -S -x /usr/sbin/snmptrapd \ start-stop-daemon -q -S -x /usr/sbin/snmptrapd -- $TRAPDOPTS
-- $TRAPDOPTS echo -n " snmptrapd"
echo -n " snmptrapd"
fi fi
echo "." echo "."
;; ;;
@ -68,23 +66,22 @@ case "$1" in
# Allow the daemons time to exit completely. # Allow the daemons time to exit completely.
sleep 2 sleep 2
if [ "$SNMPDRUN" = "yes" -a -f /etc/snmp/snmpd.conf ]; then if [ "$SNMPDRUN" = "yes" -a -f /etc/snmp/snmpd.conf ]; then
start-stop-daemon -q -S -x /usr/sbin/snmpd -- $SNMPDOPTS start-stop-daemon -q -S -x /usr/sbin/snmpd -- $SNMPDOPTS
echo -n " snmpd" echo -n " snmpd"
fi fi
if [ "$TRAPDRUN" = "yes" -a -f /etc/snmp/snmptrapd.conf ]; then if [ "$TRAPDRUN" = "yes" -a -f /etc/snmp/snmptrapd.conf ]; then
# Allow snmpd time to start up. # Allow snmpd time to start up.
sleep 1 sleep 1
start-stop-daemon -q -S -x /usr/sbin/snmptrapd -- $TRAPDOPTS start-stop-daemon -q -S -x /usr/sbin/snmptrapd -- $TRAPDOPTS
echo -n " snmptrapd" echo -n " snmptrapd"
fi fi
echo "." echo "."
;; ;;
reload|force-reload) reload|force-reload)
echo -n "Reloading network management services:" echo -n "Reloading network management services:"
if [ "$SNMPDRUN" = "yes" -a -f /etc/snmp/snmpd.conf ]; then if [ "$SNMPDRUN" = "yes" -a -f /etc/snmp/snmpd.conf ]; then
start-stop-daemon -q -K -s 1 \ start-stop-daemon -q -K -s 1 -p /var/run/snmpd.pid -x /usr/sbin/snmpd
-p /var/run/snmpd.pid -x /usr/sbin/snmpd echo -n " snmpd"
echo -n " snmpd"
fi fi
echo "." echo "."
;; ;;