16 lines
302 B
Text
16 lines
302 B
Text
#!/sbin/openrc-run
|
|
|
|
PIDFILE="/var/run/scanbd.pid"
|
|
EXEC="/usr/sbin/scanbd"
|
|
|
|
start() {
|
|
ebegin "Starting scanbd"
|
|
start-stop-daemon --pidfile "${PIDFILE}" --start --quiet --exec "${EXEC}"
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping scanbd"
|
|
start-stop-daemon --pidfile "${PIDFILE}" --stop --quiet
|
|
eend $?
|
|
}
|