mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
18 lines
266 B
Text
Executable file
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 $?
|
|
}
|
|
|