1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 20:25:28 +03:00
aports/community/slim/slim.initd
2019-05-24 14:57:57 +00:00

18 lines
266 B
Text
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 $?
}