aports/main/open-lldp/open-lldp.initd
2012-09-21 13:11:35 +00:00

25 lines
354 B
Plaintext
Executable File

#!/sbin/runscript
NAME="lldpad"
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 $?
}