~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

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

  • 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:          logcentral
4
 
# Required-Start:    $network $local_fs $remote_fs
5
 
# Required-Stop:     $remote_fs
6
 
# Default-Start:     2 3 4 5
7
 
# Default-Stop:      0 1 6
8
 
# Short-Description: LogCentral distributed logging service
9
 
# Description:       LogCentral distributed logging service
10
 
### END INIT INFO
11
 
 
12
 
# Author: Haïkel Guémar <haikel.guemar@sysfera.com>
13
 
 
14
 
# PATH should only include /usr/* if it runs after the mountnfs.sh script
15
 
PATH=/sbin:/usr/sbin:/bin:/usr/bin
16
 
DESC="LogCentral distributed logging service"
17
 
NAME=LogCentral
18
 
CONFIG_FILE="/etc/$NAME.cfg"
19
 
DAEMON=/usr/bin/LogCentral
20
 
DAEMON_ARGS="-config $CONFIG_FILE"
21
 
PIDFILE=/var/run/$NAME.pid
22
 
SCRIPTNAME=/etc/init.d/$NAME
23
 
 
24
 
# Exit if the package is not installed
25
 
[ -x $DAEMON ] || exit 0
26
 
 
27
 
 
28
 
# Load the VERBOSE setting and other rcS variables
29
 
. /lib/init/vars.sh
30
 
 
31
 
# Define LSB log_* functions.
32
 
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
33
 
. /lib/lsb/init-functions
34
 
 
35
 
#
36
 
# Function that starts the daemon/service
37
 
#
38
 
do_start()
39
 
{
40
 
        # Return
41
 
        #   0 if daemon has been started
42
 
        #   1 if daemon was already running
43
 
        #   2 if daemon could not be started
44
 
        start-stop-daemon --background --start --quiet --pidfile $PIDFILE --exec $DAEMON --test \
45
 
                || return 1
46
 
        start-stop-daemon --background --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
47
 
                $DAEMON_ARGS \
48
 
                || return 2
49
 
        # Add code here, if necessary, that waits for the process to be ready
50
 
        # to handle requests from services started subsequently which depend
51
 
        # on this one.  As a last resort, sleep for some time.
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
 
        start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
65
 
        RETVAL="$?"
66
 
        [ "$RETVAL" = 2 ] && return 2
67
 
        # Wait for children to finish too if this is a daemon that forks
68
 
        # and if the daemon is only ever run from this initscript.
69
 
        # If the above conditions are not satisfied then add some other code
70
 
        # that waits for the process to drop all resources that could be
71
 
        # needed by services started subsequently.  A last resort is to
72
 
        # sleep for some time.
73
 
        start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
74
 
        [ "$?" = 2 ] && return 2
75
 
        # Many daemons don't delete their pidfiles when they exit.
76
 
        rm -f $PIDFILE
77
 
        return "$RETVAL"
78
 
}
79
 
 
80
 
#
81
 
# Function that sends a SIGHUP to the daemon/service
82
 
#
83
 
do_reload() {
84
 
        #
85
 
        # If the daemon can reload its configuration without
86
 
        # restarting (for example, when it is sent a SIGHUP),
87
 
        # then implement that here.
88
 
        #
89
 
        start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
90
 
        return 0
91
 
}
92
 
 
93
 
case "$1" in
94
 
  start)
95
 
    [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC " "$NAME"
96
 
    do_start
97
 
    case "$?" in
98
 
                0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
99
 
                2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
100
 
        esac
101
 
  ;;
102
 
  stop)
103
 
        [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
104
 
        do_stop
105
 
        case "$?" in
106
 
                0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
107
 
                2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
108
 
        esac
109
 
        ;;
110
 
  status)
111
 
       status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
112
 
       ;;
113
 
  #reload|force-reload)
114
 
        #
115
 
        # If do_reload() is not implemented then leave this commented out
116
 
        # and leave 'force-reload' as an alias for 'restart'.
117
 
        #
118
 
        #log_daemon_msg "Reloading $DESC" "$NAME"
119
 
        #do_reload
120
 
        #log_end_msg $?
121
 
        #;;
122
 
  restart|force-reload)
123
 
        #
124
 
        # If the "reload" option is implemented then remove the
125
 
        # 'force-reload' alias
126
 
        #
127
 
        log_daemon_msg "Restarting $DESC" "$NAME"
128
 
        do_stop
129
 
        case "$?" in
130
 
          0|1)
131
 
                do_start
132
 
                case "$?" in
133
 
                        0) log_end_msg 0 ;;
134
 
                        1) log_end_msg 1 ;; # Old process is still running
135
 
                        *) log_end_msg 1 ;; # Failed to start
136
 
                esac
137
 
                ;;
138
 
          *)
139
 
                # Failed to stop
140
 
                log_end_msg 1
141
 
                ;;
142
 
        esac
143
 
        ;;
144
 
  *)
145
 
        #echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
146
 
        echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2
147
 
        exit 3
148
 
        ;;
149
 
esac
150
 
 
151
 
: