]> git.pld-linux.org Git - packages/dante.git/blame - sockd.init
Release 6 (by relup.sh)
[packages/dante.git] / sockd.init
CommitLineData
30b7a6a0 1#!/bin/sh
2#
f33ec771 3# sockd This shell script takes care of starting and stopping
4# the Dante server.
30b7a6a0 5#
f33ec771 6# chkconfig: 2345 65 35
7# description: sockd implements a socks v4/v5 proxy server
30b7a6a0 8#
9# processname: sockd
10# pidfile: /var/run/sockd.pid
11
12
13# Source function library
14. /etc/rc.d/init.d/functions
15
16# Get network config
17. /etc/sysconfig/network
18
19# Get service config
20[ -f /etc/sysconfig/sockd ] && . /etc/sysconfig/sockd
21
22# Check that networking is up.
f33ec771 23if is_yes "${NETWORKING}"; then
a4a67615 24 if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
f33ec771 25 msg_network_down sockdd
26 exit 1
27 fi
28else
29 exit 0
30b7a6a0 30fi
31
58414cf8 32start() {
30b7a6a0 33 # Check if the service is already running?
f33ec771 34 if [ ! -f /var/lock/subsys/sockd ]; then
30b7a6a0 35 msg_starting sockd
36 daemon sockd -D
f33ec771 37 RETVAL=$?
30b7a6a0 38 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/sockd
39 else
f33ec771 40 msg_already_running sockd
30b7a6a0 41 fi
58414cf8
JB
42}
43
44stop() {
30b7a6a0 45 if [ -f /var/lock/subsys/sockd ]; then
f33ec771 46 msg_stopping sockd
47 killproc sockd
f33ec771 48 rm -f /var/lock/subsys/sockd /var/run/sockd.pid >/dev/null 2>&1
49 else
50 msg_not_running sockd
30b7a6a0 51 fi
58414cf8
JB
52}
53
54condrestart() {
55 if [ ! -f /var/lock/subsys/sockd ]; then
56 msg_not_running sockd
57 RETVAL=$1
58 return
59 fi
60 stop
61 start
62}
63
64RETVAL=0
65# See how we were called.
66case "$1" in
67 start)
68 start
69 ;;
70 stop)
71 stop
72 ;;
73 restart)
74 stop
75 start
76 ;;
77 try-restart)
78 condrestart 0
79 ;;
80 force-reload)
81 condrestart 7
30b7a6a0 82 ;;
83 status)
84 status sockd
85 exit $?
86 ;;
30b7a6a0 87 *)
58414cf8 88 msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
2ae8fcc2 89 exit 3
30b7a6a0 90esac
91
92exit $RETVAL
This page took 0.168772 seconds and 4 git commands to generate.