blob: 564458e44613c4d1cbc45b8739fb59564e83c80d (
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
26
27
28
29
|
#!/sbin/openrc-run
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
extra_started_commands="reload"
depend() {
need net
use logger dns ypbind
}
start() {
ebegin "Starting pop-before-smtp"
start-stop-daemon --start --pidfile /var/run/pop-before-smtp.pid --exec /usr/sbin/pop-before-smtp -- --daemon=/var/run/pop-before-smtp.pid
eend $?
}
stop() {
ebegin "Stopping pop-before-smtp"
start-stop-daemon --stop --pidfile /var/run/pop-before-smtp.pid
eend $?
}
reload() {
ebegin "Reloading postfix"
/usr/sbin/postfix reload &>/dev/null
eend $?
}
|