aports/testing/openlldp/openlldp.initd
2010-10-28 11:12:09 +00:00

25 lines
353 B
Plaintext
Executable File

#!/sbin/runscript
NAME="lldpd"
DAEMON="/usr/sbin/$NAME"
pidfile=/var/run/$NAME.pid
depend() {
need net
after firewall
}
start() {
ebegin "Starting ${NAME}"
start-stop-daemon --start --quiet --pidfile ${pidfile} \
--exec ${DAEMON} -- ${OPTS}
eend $?
}
stop() {
ebegin "Stopping ${NAME}"
start-stop-daemon --stop --exec ${DAEMON}
eend $?
}