aports/main/open-lldp/open-lldp.initd

25 lines
355 B
Plaintext
Executable File

#!/sbin/openrc-run
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 $?
}