mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
12 lines
186 B
Bash
Executable file
12 lines
186 B
Bash
Executable file
#!/sbin/openrc-run
|
|
|
|
name="lldpad"
|
|
command="/usr/sbin/lldpad"
|
|
command_args="$command_args -p"
|
|
command_background=true
|
|
pidfile=/run/$RC_SVCNAME.pid
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|