mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 13:22:21 +01:00
19 lines
266 B
Plaintext
Executable File
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 $?
|
|
}
|
|
|