aports/main/slim/slim.initd
2010-01-25 16:43:57 +00:00

19 lines
260 B
Plaintext
Executable File

#!/sbin/runscript
depends() {
needs localmount
}
start() {
ebegin "Starting slim"
start-stop-daemon --start --quiet --exec /usr/bin/slim -- -d
eend $?
}
stop() {
ebegin "Stopping slim"
start-stop-daemon --stop --quiet --exec /usr/bin/slim
eend $?
}