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/policyd/files/policyd.rc

22 lines
443 B

#!/sbin/openrc-run
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
before mta
provide postfix_greylist
}
start() {
ebegin "Starting policyd"
start-stop-daemon --name policyd --start --quiet --exec /usr/sbin/policyd \
-- -c ${POLICYD_CONFIG}
eend $?
}
stop() {
ebegin "Stopping policyd"
start-stop-daemon --stop --quiet --pidfile /var/run/policyd.pid
eend $?
}