blob: 4d3202b17f28af3ede7a01c90aa7a69b5d00392b (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/sbin/runscript
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/files/stunnel.initd-start-stop-daemon,v 1.3 2013/06/16 16:04:11 blueness Exp $
SERVICENAME=${SVCNAME#*.}
SERVICENAME=${SERVICENAME:-stunnel}
STUNNEL_CONFIGFILE=${STUNNEL_CONFIGFILE:-/etc/stunnel/${SERVICENAME}.conf}
depend() {
need net
before logger
}
get_config() {
if [ ! -e ${STUNNEL_CONFIGFILE} ] ; then
eerror "You need to create ${STUNNEL_CONFIGFILE} first."
return 1
fi
CHROOT=$(grep "^chroot" ${STUNNEL_CONFIGFILE} | sed "s;.*= *;;")
[ -n "${CHROOT}" ] && CHROOT="--chroot ${CHROOT}"
PIDFILE=$(grep "^pid" ${STUNNEL_CONFIGFILE} | sed "s;.*= *;;")
PIDFILE=${PIDFILE:-/var/run/stunnel/${SERVICENAME}.pid}
}
start() {
get_config || return 1
checkpath -d -m 0775 -o root:stunnel /var/run/stunnel
if [ "$(dirname ${PIDFILE})" != "/var/run" ]; then
checkpath -d -m 0755 -o stunnel:stunnel -q $(dirname ${PIDFILE})
fi
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --pidfile "${PIDFILE}" ${CHROOT} \
--exec /usr/bin/stunnel -- ${STUNNEL_CONFIGFILE} ${STUNNEL_OPTIONS}
eend $? "Failed to start ${SVCNAME}"
}
stop() {
get_config || return 1
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --quiet --pidfile ${PIDFILE}
eend $? "Failed to stop ${SVCNAME}"
}
|