mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-02 04:11:33 +02:00
19 lines
309 B
Plaintext
Executable File
19 lines
309 B
Plaintext
Executable File
#!/sbin/runscript
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting arpalert"
|
|
start-stop-daemon --quiet --start --pidfile /var/run/arpalert.lock --exec /usr/sbin/arpalert -- -d
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping arpalert"
|
|
start-stop-daemon --quiet --stop --pidfile /var/run/arpalert.lock
|
|
eend $?
|
|
}
|
|
|