~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to utopic/etc/init.d/bird

  • Committer: Dimitri John Ledkov
  • Date: 2014-05-06 18:45:46 UTC
  • Revision ID: dimitri.ledkov@canonical.com-20140506184546-5toyx56xxrue0f0v
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
### BEGIN INIT INFO
 
3
# Provides:          bird
 
4
# Required-Start:    $remote_fs $syslog
 
5
# Required-Stop:     $remote_fs $syslog
 
6
# Default-Start:     2 3 4 5
 
7
# Default-Stop:      0 1 6
 
8
### END INIT INFO
 
9
 
 
10
# Author: Ondřej Surý <ondrej@sury.org>
 
11
#
 
12
 
 
13
# PATH should only include /usr/* if it runs after the mountnfs.sh script
 
14
PATH=/sbin:/usr/sbin:/bin:/usr/bin
 
15
DESC="BIRD Internet Routing Daemon (IPv4)"
 
16
NAME=bird
 
17
DAEMON=/usr/sbin/$NAME
 
18
BIRD_ARGS=""
 
19
SCRIPTNAME=/etc/init.d/$NAME
 
20
 
 
21
# Exit if the package is not installed
 
22
[ -x "$DAEMON" ] || exit 0
 
23
 
 
24
# read the RUN variables
 
25
. /etc/bird/envvars
 
26
 
 
27
# Define LSB log_* functions.
 
28
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
 
29
. /lib/lsb/init-functions
 
30
 
 
31
# Create /run/bird with correct permissions
 
32
/usr/lib/bird/prepare-environment
 
33
 
 
34
#
 
35
# Function that starts the daemon/service
 
36
#
 
37
do_start()
 
38
{
 
39
        # Return
 
40
        #   0 if daemon has been started
 
41
        #   1 if daemon was already running
 
42
        #   2 if daemon could not be started
 
43
        start-stop-daemon --start --quiet --name $NAME --exec $DAEMON --test > /dev/null \
 
44
                || return 1
 
45
        start-stop-daemon --start --quiet --name $NAME --exec $DAEMON -- \
 
46
                -u $BIRD_RUN_USER -g $BIRD_RUN_GROUP $BIRD_ARGS \
 
47
                || return 2
 
48
        # Add code here, if necessary, that waits for the process to be ready
 
49
        # to handle requests from services started subsequently which depend
 
50
        # on this one.  As a last resort, sleep for some time.
 
51
}
 
52
 
 
53
#
 
54
# Function that stops the daemon/service
 
55
#
 
56
do_stop()
 
57
{
 
58
        # Return
 
59
        #   0 if daemon has been stopped
 
60
        #   1 if daemon was already stopped
 
61
        #   2 if daemon could not be stopped
 
62
        #   other if a failure occurred
 
63
        start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --name $NAME --exec $DAEMON
 
64
        RETVAL="$?"
 
65
        [ "$RETVAL" = 2 ] && return 2
 
66
        # Wait for children to finish too if this is a daemon that forks
 
67
        # and if the daemon is only ever run from this initscript.
 
68
        start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --name $NAME --exec $DAEMON
 
69
        [ "$?" = 2 ] && return 2
 
70
        return "$RETVAL"
 
71
}
 
72
 
 
73
#
 
74
# Function that sends a SIGHUP to the daemon/service
 
75
#
 
76
do_reload() {
 
77
        #
 
78
        # If the daemon can reload its configuration without
 
79
        # restarting (for example, when it is sent a SIGHUP),
 
80
        # then implement that here.
 
81
        #
 
82
        start-stop-daemon --stop --signal 1 --quiet --name $NAME --exec $DAEMON
 
83
        return 0
 
84
}
 
85
 
 
86
case "$1" in
 
87
  start)
 
88
        log_daemon_msg "Starting $DESC" "$NAME"
 
89
        do_start
 
90
        case "$?" in
 
91
                0|1) log_end_msg 0 ;;
 
92
                2) log_end_msg 1 ;;
 
93
        esac
 
94
        ;;
 
95
  stop)
 
96
        log_daemon_msg "Stopping $DESC" "$NAME"
 
97
        do_stop
 
98
        case "$?" in
 
99
                0|1) log_end_msg 0 ;;
 
100
                2) log_end_msg 1 ;;
 
101
        esac
 
102
        ;;
 
103
  reload|force-reload)
 
104
        #
 
105
        # If do_reload() is not implemented then leave this commented out
 
106
        # and leave 'force-reload' as an alias for 'restart'.
 
107
        #
 
108
        log_daemon_msg "Reloading $DESC" "$NAME"
 
109
        do_reload
 
110
        log_end_msg $?
 
111
        ;;
 
112
  restart)
 
113
        log_daemon_msg "Restarting $DESC" "$NAME"
 
114
        do_stop
 
115
        case "$?" in
 
116
          0|1)
 
117
                do_start
 
118
                case "$?" in
 
119
                        0) log_end_msg 0 ;;
 
120
                        1) log_end_msg 1 ;; # Old process is still running
 
121
                        *) log_end_msg 1 ;; # Failed to start
 
122
                esac
 
123
                ;;
 
124
          *)
 
125
                # Failed to stop
 
126
                log_end_msg 1
 
127
                ;;
 
128
        esac
 
129
        ;;
 
130
  *)
 
131
        echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
 
132
        exit 3
 
133
        ;;
 
134
esac
 
135
 
 
136
: