pmaports/temp/waked/waked.initd

17 lines
266 B
Text
Raw Normal View History

2021-07-18 12:55:33 +00:00
#!/sbin/openrc-run
depend() {
need net
}
start() {
ebegin "Starting waked"
start-stop-daemon --background --start --exec /usr/bin/waked
eend $?
}
stop() {
ebegin "Stopping waked"
start-stop-daemon --stop --exec /usr/bin/waked
eend $?
}