change init.d_script for net-snmp

This commit is contained in:
Peter Pfeiffer
2009-04-02 06:22:02 +02:00
parent 27346ebeef
commit 48a0687edd

View File

@@ -18,13 +18,13 @@
case "${1}" in
start)
boot_mesg "Starting net-snmp - SNMPD..."
loadproc /usr/local/sbin/snmpd -c /etc/snmpd.conf > /dev/null
loadproc /usr/sbin/snmpd -c /etc/snmpd.conf > /dev/null
evaluate_retval
;;
stop)
boot_mesg "Stopping net-snmp - SNMPD..."
killproc /usr/local/sbin/snmpd
killproc /usr/sbin/snmpd
;;
restart)
@@ -34,7 +34,7 @@ case "${1}" in
;;
status)
statusproc /usr/local/sbin/snmpd
statusproc /usr/sbin/snmpd
;;
*)