aports/community/slim/slim.initd
2019-05-24 14:57:57 +00:00

19 lines
266 B
Plaintext
Executable File

#!/sbin/openrc-run
depends() {
needs localmount dbus
}
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 $?
}