]> git.pld-linux.org Git - packages/stunnel.git/blame - stunnel.init
- massive change: BR openssl-devel >= 0.9.7d
[packages/stunnel.git] / stunnel.init
CommitLineData
44a8700b 1#!/bin/sh
2#
3# stunnel stunnel (Universal SSL tunnel)
4#
8fe6017e 5# chkconfig: 345 14 91
44a8700b 6#
7# description: stunnel (Universal SSL tunnel)
8#
9# id: $Id$
10#
11
12# Source function library
13. /etc/rc.d/init.d/functions
14
15# Get network config
16. /etc/sysconfig/network
17
18# Get service config
19[ -f /etc/sysconfig/stunnel ] && . /etc/sysconfig/stunnel
20
21# Check that networking is up.
8fe6017e 22if is_yes "${NETWORKING}"; then
bcc1e58c 23 if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
8fe6017e 24 msg_network_down stunnel
25 exit 1
26 fi
27else
28 exit 0
44a8700b 29fi
30
31# Daemon doesn't die if config doesn't exist
8fe6017e 32if [ ! -f "$STUNNEL_CONFIG" ]; then
33 nls "%s config %s does not exist." Stunnel "$STUNNEL_CONFIG"
44a8700b 34 exit 1
35fi
36
efeb3841 37RETVAL=0
44a8700b 38# See how we were called.
39case "$1" in
40 start)
41 # Check if the service is already running?
42 if [ ! -f /var/lock/subsys/stunnel ]; then
43 msg_starting stunnel; busy
44 daemon stunnel $STUNNEL_CONFIG
45 RETVAL=$?
8fe6017e 46 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/stunnel
44a8700b 47 else
48 msg_already_running stunnel
44a8700b 49 fi
50 ;;
51 stop)
8fe6017e 52 if [ -f /var/lock/subsys/stunnel ]; then
44a8700b 53 msg_stopping stunnel
54 killproc stunnel
55 rm -f /var/run/stunnel/stunnel.pid /var/lock/subsys/stunnel >/dev/null 2>&1
56 else
57 msg_not_running stunnel
44a8700b 58 fi
59 ;;
efeb3841 60 restart|force-reload)
44a8700b 61 $0 stop
62 $0 start
8fe6017e 63 exit $?
64 ;;
44a8700b 65 status)
66 status stunnel
67 exit $?
68 ;;
69 *)
efeb3841 70 msg_usage "$0 {start|stop|restart|force-reload|status}"
71 exit 3
44a8700b 72esac
73
74exit $RETVAL
This page took 0.070897 seconds and 4 git commands to generate.