summaryrefslogtreecommitdiff
blob: e2261c481d412c6f90ad54ce93fc83457b6b8508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
	need net
	before postfix
}

start() {
	ebegin "Starting Postwhite"
	/usr/sbin/postwhite --quiet --detach ${POSTWHITE_OPTS} start 
	eend ${?}
}

stop() {
	ebegin "Stopping Postwhite"
	/usr/sbin/postwhite --quiet stop	
	eend ${?}
}