You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/mail-filter/p3scan/files/p3scan.init

28 lines
503 B

#!/sbin/openrc-run
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
}
start() {
ebegin "Starting p3scan"
start-stop-daemon --start --quiet --pidfile /var/run/p3scan/p3scan.pid --exec /usr/sbin/p3scan
eend $?
}
stop() {
ebegin "Stopping p3scan"
start-stop-daemon --stop --quiet --oknodo --pidfile /var/run/p3scan/p3scan.pid
eend $?
}
restart() {
ebegin "Restarting p3scan"
svc_stop
sleep 1
svc_start
eend $?
}