aboutsummaryrefslogtreecommitdiffstats
path: root/main/open-lldp/open-lldp.initd
blob: 468473a6407f77e27086beda92e76ce06f01ccab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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 $?
}