4 # Required-Start: $remote_fs $network
5 # Required-Stop: $remote_fs $network
6 # Default-Start: 2 3 4 5
8 # Short-Description: initscript for iodined
9 # Description: initscript for iodined
12 # Author: gregor herrmann <gregor+debian@comodo.priv.at>
16 # PATH should only include /usr/* if it runs after the mountnfs.sh script
17 PATH=/sbin:/usr/sbin:/bin:/usr/bin
18 DESC="IP over DNS tunneling server"
20 DAEMON=/usr/sbin/$NAME
23 PIDFILE=/var/run/$NAME.pid
24 SCRIPTNAME=/etc/init.d/$NAME
26 # Exit if the package is not installed
27 [ -x "$DAEMON" ] || exit 0
29 # Read configuration variable file or exit
30 [ -r /etc/default/$DEFAULT ] || exit 0
31 . /etc/default/$DEFAULT
33 # Load the VERBOSE setting and other rcS variables
36 # Define LSB log_* functions.
37 # Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
38 . /lib/lsb/init-functions
42 if [ "$START_IODINED" != "true" ] ; then
43 log_warning_msg "$NAME is not configured to start automatically. Change this in /etc/default/$DEFAULT or run dpkg-reconfigure $DEFAULT."
46 if [ -n "$IODINED_ARGS" ] && [ -n "$IODINED_PASSWORD" ] ; then
47 DAEMON_ARGS="-u iodine -t /var/run/iodine -P $IODINED_PASSWORD $IODINED_ARGS"
49 log_warning_msg "$NAME is not fully configured. Change this in /etc/default/$DEFAULT or run dpkg-reconfigure $DEFAULT."
56 # Function that starts the daemon/service
60 # populate $DAEMON_ARGS
63 # 0 if daemon has been started
64 # 1 if daemon was already running
65 # 2 if daemon could not be started
66 start-stop-daemon --start --quiet --exec $DAEMON --test > /dev/null \
68 start-stop-daemon --start --quiet --exec $DAEMON -- \
71 # Add code here, if necessary, that waits for the process to be ready
72 # to handle requests from services started subsequently which depend
73 # on this one. As a last resort, sleep for some time.
77 # Function that stops the daemon/service
82 # 0 if daemon has been stopped
83 # 1 if daemon was already stopped
84 # 2 if daemon could not be stopped
85 # other if a failure occurred
86 start-stop-daemon --stop --quiet --retry=TERM/5/KILL/5 --name $NAME
88 [ "$RETVAL" = 2 ] && return 2
89 # Wait for children to finish too if this is a daemon that forks
90 # and if the daemon is only ever run from this initscript.
91 # If the above conditions are not satisfied then add some other code
92 # that waits for the process to drop all resources that could be
93 # needed by services started subsequently. A last resort is to
94 # sleep for some time.
95 start-stop-daemon --stop --quiet --oknodo --retry=0/5/KILL/5 --exec $DAEMON
96 [ "$?" = 2 ] && return 2
97 # Many daemons don't delete their pidfiles when they exit.
104 [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
107 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
108 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
112 [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
115 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
116 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
119 restart|force-reload)
120 log_daemon_msg "Restarting $DESC" "$NAME"
127 1) log_end_msg 1 ;; # Old process is still running
128 *) log_end_msg 1 ;; # Failed to start
138 echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2