summaryrefslogtreecommitdiff
blob: 54fda4611ef95f8bce634c0f6407a5d698b9bd55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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 $?
}