netsnmp: fix tab/space formatting in init.d script
authorDanomi Manchego <danomimanchego123@gmail.com>
Fri, 28 Mar 2014 02:08:46 +0000 (22:08 -0400)
committerPeter Korsgaard <peter@korsgaard.com>
Fri, 28 Mar 2014 08:59:49 +0000 (09:59 +0100)
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>
package/netsnmp/S59snmpd

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