20 lines
407 B
Text
20 lines
407 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
depend() {
|
|
need localmount
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting sendpage"
|
|
start-stop-daemon --start --exec /usr/bin/sendpage -- -bd
|
|
eend ${?}
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping sendpage"
|
|
start-stop-daemon --stop -n sendpage
|
|
eend ${?}
|
|
}
|
|
|