mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-10 07:47:09 +02:00
25 lines
353 B
Plaintext
Executable File
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 $?
|
|
}
|
|
|