blob: c9d8184290d7379356d6e85b745f827ca185809d (
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
30
|
#!/sbin/openrc-run
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License, v2
# $Id$
depend() {
need net
}
checkconfig() {
if [ ! -e /etc/tpop3d/tpop3d.conf ] ; then
eerror "You need an /etc/tpop3d/tpop3d.conf file to run tpop3d"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting tpop3d"
start-stop-daemon --start --quiet --background \
--exec /usr/sbin/tpop3d -- -f /etc/tpop3d/tpop3d.conf \
-p /var/run/tpop3d.pid
eend $?
}
stop() {
ebegin "Stopping tpop3d"
start-stop-daemon --stop --quiet --exec /usr/sbin/tpop3d
eend $?
}
|