1 | #! /bin/sh |
---|
2 | ### BEGIN INIT INFO |
---|
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 |
---|
7 | # Default-Stop: 0 1 6 |
---|
8 | # Short-Description: sipb-xen DNS server |
---|
9 | # Description: |
---|
10 | ### END INIT INFO |
---|
11 | |
---|
12 | # Author: Foo Bar <foobar@baz.org> |
---|
13 | # |
---|
14 | # Please remove the "Author" lines above and replace them |
---|
15 | # with your own name if you copy and modify this script. |
---|
16 | |
---|
17 | # Do NOT "set -e" |
---|
18 | |
---|
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" |
---|
22 | NAME=sipb-xen-dns |
---|
23 | DAEMON=/usr/local/lib/sipb-xen-dns/dnsserver.py |
---|
24 | DAEMON_ARGS="" |
---|
25 | PIDFILE=/var/run/$NAME.pid |
---|
26 | SCRIPTNAME=/etc/init.d/$NAME |
---|
27 | |
---|
28 | # Exit if the package is not installed |
---|
29 | [ -x "$DAEMON" ] || exit 0 |
---|
30 | |
---|
31 | # Read configuration variable file if it is present |
---|
32 | [ -r /etc/default/$NAME ] && . /etc/default/$NAME |
---|
33 | |
---|
34 | # Load the VERBOSE setting and other rcS variables |
---|
35 | . /lib/init/vars.sh |
---|
36 | |
---|
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 |
---|
40 | |
---|
41 | # |
---|
42 | # Function that starts the daemon/service |
---|
43 | # |
---|
44 | do_start() |
---|
45 | { |
---|
46 | # Return |
---|
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 |
---|
52 | } |
---|
53 | |
---|
54 | # |
---|
55 | # Function that stops the daemon/service |
---|
56 | # |
---|
57 | do_stop() |
---|
58 | { |
---|
59 | # Return |
---|
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 |
---|
65 | RETVAL="$?" |
---|
66 | [ "$RETVAL" = 2 ] && return 2 |
---|
67 | # Many daemons don't delete their pidfiles when they exit. |
---|
68 | rm -f $PIDFILE |
---|
69 | return "$RETVAL" |
---|
70 | } |
---|
71 | |
---|
72 | case "$1" in |
---|
73 | start) |
---|
74 | [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" |
---|
75 | do_start |
---|
76 | case "$?" in |
---|
77 | 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; |
---|
78 | 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; |
---|
79 | esac |
---|
80 | ;; |
---|
81 | stop) |
---|
82 | [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" |
---|
83 | do_stop |
---|
84 | case "$?" in |
---|
85 | 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; |
---|
86 | 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; |
---|
87 | esac |
---|
88 | ;; |
---|
89 | #reload|force-reload) |
---|
90 | # |
---|
91 | # If do_reload() is not implemented then leave this commented out |
---|
92 | # and leave 'force-reload' as an alias for 'restart'. |
---|
93 | # |
---|
94 | #log_daemon_msg "Reloading $DESC" "$NAME" |
---|
95 | #do_reload |
---|
96 | #log_end_msg $? |
---|
97 | #;; |
---|
98 | restart|force-reload) |
---|
99 | # |
---|
100 | # If the "reload" option is implemented then remove the |
---|
101 | # 'force-reload' alias |
---|
102 | # |
---|
103 | log_daemon_msg "Restarting $DESC" "$NAME" |
---|
104 | do_stop |
---|
105 | case "$?" in |
---|
106 | 0|1) |
---|
107 | do_start |
---|
108 | case "$?" in |
---|
109 | 0) log_end_msg 0 ;; |
---|
110 | 1) log_end_msg 1 ;; # Old process is still running |
---|
111 | *) log_end_msg 1 ;; # Failed to start |
---|
112 | esac |
---|
113 | ;; |
---|
114 | *) |
---|
115 | # Failed to stop |
---|
116 | log_end_msg 1 |
---|
117 | ;; |
---|
118 | esac |
---|
119 | ;; |
---|
120 | *) |
---|
121 | #echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2 |
---|
122 | echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2 |
---|
123 | exit 3 |
---|
124 | ;; |
---|
125 | esac |
---|
126 | |
---|
127 | : |
---|