3 # Provides: sipb-xen-dns
4 # Required-Start: $local_fs $remote_fs
5 # Required-Stop: $local_fs $remote_fs
6 # Default-Start: 2 3 4 5
8 # Short-Description: sipb-xen DNS server
12 # Author: Foo Bar <foobar@baz.org>
14 # Please remove the "Author" lines above and replace them
15 # with your own name if you copy and modify this script.
19 # PATH should only include /usr/* if it runs after the mountnfs.sh script
20 PATH=/sbin:/usr/sbin:/bin:/usr/bin
21 DESC="The sipb-xen DNS server"
23 DAEMON=/usr/local/lib/sipb-xen-dns/dnsserver.py
25 PIDFILE=/var/run/$NAME.pid
26 SCRIPTNAME=/etc/init.d/$NAME
28 # Exit if the package is not installed
29 [ -x "$DAEMON" ] || exit 0
31 # Read configuration variable file if it is present
32 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
34 # Load the VERBOSE setting and other rcS variables
37 # Define LSB log_* functions.
38 # Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
39 . /lib/lsb/init-functions
42 # Function that starts the daemon/service
47 # 0 if daemon has been started
48 # 1 if daemon was already running
49 # 2 if daemon could not be started
50 daemon --running -n $NAME && return 1
51 daemon -r -n $NAME -U $DAEMON $DAEMON_ARGS || return 2
55 # Function that stops the daemon/service
60 # 0 if daemon has been stopped
61 # 1 if daemon was already stopped
62 # 2 if daemon could not be stopped
63 # other if a failure occurred
64 daemon --stop -n $NAME
66 [ "$RETVAL" = 2 ] && return 2
67 # Many daemons don't delete their pidfiles when they exit.
74 [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
77 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
78 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
82 [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
85 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
86 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
91 # If do_reload() is not implemented then leave this commented out
92 # and leave 'force-reload' as an alias for 'restart'.
94 #log_daemon_msg "Reloading $DESC" "$NAME"
100 # If the "reload" option is implemented then remove the
101 # 'force-reload' alias
103 log_daemon_msg "Restarting $DESC" "$NAME"
110 1) log_end_msg 1 ;; # Old process is still running
111 *) log_end_msg 1 ;; # Failed to start
121 #echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
122 echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2