summaryrefslogtreecommitdiff
blob: f9c89c965ec5f653dc4782df9cc3763820bb392f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/sbin/runscript
opts="${opts} reload"

depend(){
	before postfix
	need net
}

start(){
	ebegin "Starting policyd-weight"
	/usr/lib/postfix/policyd-weight start
	eend $?
}

stop(){
	ebegin "Stopping policyd-weight"
	/usr/lib/postfix/policyd-weight stop
	eend $?
}

reload(){
	ebegin "Reloading policyd-weight"
	/usr/lib/postfix/policyd-weight reload
	eend $?
}