~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to vivid/etc/init.d/kanla

  • Committer: Dimitri John Ledkov
  • Date: 2014-11-19 12:58:41 UTC
  • Revision ID: dimitri.j.ledkov@intel.com-20141119125841-98dr37roy8dvcv3b
auto update

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
### BEGIN INIT INFO
 
3
# Provides:          kanla
 
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
# Short-Description: small-scale alerting daemon
 
9
# Description:       Starts kanla on boot.
 
10
### END INIT INFO
 
11
 
 
12
# Author: Michael Stapelberg <stapelberg@debian.org>
 
13
 
 
14
# Do NOT "set -e"
 
15
 
 
16
# PATH should only include /usr/* if it runs after the mountnfs.sh script
 
17
PATH=/sbin:/usr/sbin:/bin:/usr/bin
 
18
DESC="Description of the service"
 
19
NAME=kanla
 
20
DAEMON=/usr/bin/$NAME
 
21
DAEMON_ARGS=""
 
22
PIDFILE=/var/run/$NAME.pid
 
23
SCRIPTNAME=/etc/init.d/$NAME
 
24
LOGFILE=/var/log/$NAME.log
 
25
 
 
26
# Exit if the package is not installed
 
27
[ -x "$DAEMON" ] || exit 0
 
28
 
 
29
# Read configuration variable file if it is present
 
30
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
 
31
 
 
32
# Load the VERBOSE setting and other rcS variables
 
33
. /lib/init/vars.sh
 
34
 
 
35
# Define LSB log_* functions.
 
36
# Depend on lsb-base (>= 3.2-14) to ensure that this file is present
 
37
# and status_of_proc is working.
 
38
. /lib/lsb/init-functions
 
39
 
 
40
#
 
41
# Function that starts the daemon/service
 
42
#
 
43
do_start()
 
44
{
 
45
        # Return
 
46
        #   0 if daemon has been started
 
47
        #   1 if daemon was already running
 
48
        #   2 if daemon could not be started
 
49
        start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
 
50
                || return 1
 
51
        start-stop-daemon --start --background --make-pidfile --quiet --no-close \
 
52
                --chuid kanla:kanla --pidfile $PIDFILE --exec $DAEMON -- \
 
53
                $DAEMON_ARGS >>$LOGFILE 2>&1 \
 
54
                || return 2
 
55
        # Add code here, if necessary, that waits for the process to be ready
 
56
        # to handle requests from services started subsequently which depend
 
57
        # on this one.  As a last resort, sleep for some time.
 
58
}
 
59
 
 
60
#
 
61
# Function that stops the daemon/service
 
62
#
 
63
do_stop()
 
64
{
 
65
        # Return
 
66
        #   0 if daemon has been stopped
 
67
        #   1 if daemon was already stopped
 
68
        #   2 if daemon could not be stopped
 
69
        #   other if a failure occurred
 
70
        start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name perl
 
71
        RETVAL="$?"
 
72
        [ "$RETVAL" = 2 ] && return 2
 
73
        PID=$(cat $PIDFILE)
 
74
        # Kill all plugin processes by killing the process group
 
75
        kill -- -$PID
 
76
        start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
 
77
        [ "$?" = 2 ] && return 2
 
78
        # Many daemons don't delete their pidfiles when they exit.
 
79
        rm -f $PIDFILE
 
80
        return "$RETVAL"
 
81
}
 
82
 
 
83
#
 
84
# Function that sends a SIGHUP to the daemon/service
 
85
#
 
86
do_reload() {
 
87
        #
 
88
        # If the daemon can reload its configuration without
 
89
        # restarting (for example, when it is sent a SIGHUP),
 
90
        # then implement that here.
 
91
        #
 
92
        start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
 
93
        return 0
 
94
}
 
95
 
 
96
case "$1" in
 
97
  start)
 
98
        [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
 
99
        do_start
 
100
        case "$?" in
 
101
                0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
 
102
                2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
 
103
        esac
 
104
        ;;
 
105
  stop)
 
106
        [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
 
107
        do_stop
 
108
        case "$?" in
 
109
                0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
 
110
                2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
 
111
        esac
 
112
        ;;
 
113
  status)
 
114
        status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
 
115
        ;;
 
116
  #reload|force-reload)
 
117
        #
 
118
        # If do_reload() is not implemented then leave this commented out
 
119
        # and leave 'force-reload' as an alias for 'restart'.
 
120
        #
 
121
        #log_daemon_msg "Reloading $DESC" "$NAME"
 
122
        #do_reload
 
123
        #log_end_msg $?
 
124
        #;;
 
125
  restart|force-reload)
 
126
        #
 
127
        # If the "reload" option is implemented then remove the
 
128
        # 'force-reload' alias
 
129
        #
 
130
        log_daemon_msg "Restarting $DESC" "$NAME"
 
131
        do_stop
 
132
        case "$?" in
 
133
          0|1)
 
134
                do_start
 
135
                case "$?" in
 
136
                        0) log_end_msg 0 ;;
 
137
                        1) log_end_msg 1 ;; # Old process is still running
 
138
                        *) log_end_msg 1 ;; # Failed to start
 
139
                esac
 
140
                ;;
 
141
          *)
 
142
                # Failed to stop
 
143
                log_end_msg 1
 
144
                ;;
 
145
        esac
 
146
        ;;
 
147
  *)
 
148
        #echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
 
149
        echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2
 
150
        exit 3
 
151
        ;;
 
152
esac
 
153
 
 
154
: