#!/sbin/runscript # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ depend() { before mta provide postfix_greylist } start() { ebegin "Starting policd" start-stop-daemon --name policyd --start --quiet --exec /usr/sbin/policyd -- -c ${POLICYD_CONFIG} &> /dev/null eend $? } stop() { ebegin "Stopping policyd" start-stop-daemon --name policyd --stop --quiet &> /dev/null eend $? }