mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-15 09:21:32 +02:00
21 lines
311 B
Plaintext
Executable File
21 lines
311 B
Plaintext
Executable File
#!/sbin/runscript
|
|
|
|
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 $?
|
|
}
|