mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 13:41:20 +02:00
21 lines
312 B
Plaintext
Executable File
21 lines
312 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
depend() {
|
|
need net icecast
|
|
after firewall
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting DarkIce"
|
|
start-stop-daemon --start --quiet --background \
|
|
--exec ${DARKICE_BIN} -- ${DARKICE_OPTS}
|
|
eend $?
|
|
}
|
|
|
|
|
|
stop() {
|
|
ebegin "Stopping DarkIce"
|
|
start-stop-daemon --stop --exec $DARKICE_BIN
|
|
eend $?
|
|
}
|