~upstart-devel/upstart/upstart-jobs

« back to all changes in this revision

Viewing changes to etc/init.d/yrmcds

  • 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:          yrmcds
4
 
# Required-Start:    $network $remote_fs $local_fs
5
 
# Required-Stop:     $network $remote_fs $local_fs
6
 
# Default-Start:     2 3 4 5
7
 
# Default-Stop:      0 1 6
8
 
# Short-Description: memcached compatible KVS with master/slave replication
9
 
# Description:       yrmcds is a memory object caching system with master/slave
10
 
#                    replication. Since its protocol is perfectly compatible
11
 
#                    with that of memcached, yrmcds can be used as a drop-in
12
 
#                    replacement for memcached.
13
 
### END INIT INFO
14
 
 
15
 
# Author: Kouhei Maeda <mkouhei@palmtb.net>
16
 
 
17
 
# PATH should only include /usr/* if it runs after the mountnfs.sh script
18
 
PATH=/sbin:/usr/sbin:/bin:/usr/bin
19
 
DESC=yrmcds             # Introduce a short description here
20
 
NAME=yrmcds             # Introduce the short server's name here
21
 
DAEMON_NAME=yrmcdsd
22
 
DAEMON=/usr/sbin/yrmcdsd # Introduce the server's location here
23
 
DAEMON_ARGS=""             # Arguments to run the daemon with
24
 
PIDFILE=/var/run/$NAME.pid
25
 
SCRIPTNAME=/etc/init.d/$NAME
26
 
USER=yrmcds
27
 
GROUP=yrmcds
28
 
 
29
 
# Exit if the package is not installed
30
 
[ -x $DAEMON ] || exit 0
31
 
 
32
 
# Read configuration variable file if it is present
33
 
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
34
 
 
35
 
# Load the VERBOSE setting and other rcS variables
36
 
. /lib/init/vars.sh
37
 
VERBOSE="yes"
38
 
 
39
 
# Define LSB log_* functions.
40
 
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
41
 
. /lib/lsb/init-functions
42
 
 
43
 
test -z $NOFILE_LIMIT || ulimit -n $NOFILE_LIMIT
44
 
 
45
 
check_tmpdir()
46
 
{
47
 
        test -d /var/tmp/yrmcds || install -o $USER -g $GROUP -m 0700 -d /var/tmp/yrmcds
48
 
        rm -f /var/tmp/yrmcds/*
49
 
}
50
 
 
51
 
check_for_upstart() {
52
 
        if init_is_upstart; then
53
 
                exit $1
54
 
        fi
55
 
}
56
 
 
57
 
#
58
 
# Function that starts the daemon/service
59
 
#
60
 
do_start()
61
 
{
62
 
        check_tmpdir
63
 
        # Return
64
 
        #   0 if daemon has been started
65
 
        #   1 if daemon was already running
66
 
        #   2 if daemon could not be started
67
 
        start-stop-daemon --start --quiet --pidfile $PIDFILE -m -u $USER -g $GROUP -b --exec $DAEMON --test > /dev/null \
68
 
                || return 1
69
 
        start-stop-daemon --start --quiet --pidfile $PIDFILE -m -u $USER -g $GROUP -b --exec $DAEMON -- \
70
 
                $DAEMON_ARGS \
71
 
                || return 2
72
 
        # The above code will not work for interpreted scripts, use the next
73
 
        # six lines below instead (Ref: #643337, start-stop-daemon(8) )
74
 
        #start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON \
75
 
        #       --name $NAME --test > /dev/null \
76
 
        #       || return 1
77
 
        #start-stop-daemon --start --quiet --pidfile $PIDFILE --startas $DAEMON \
78
 
        #       --name $NAME -- $DAEMON_ARGS \
79
 
        #       || return 2
80
 
 
81
 
        # Add code here, if necessary, that waits for the process to be ready
82
 
        # to handle requests from services started subsequently which depend
83
 
        # on this one.  As a last resort, sleep for some time.
84
 
}
85
 
 
86
 
#
87
 
# Function that stops the daemon/service
88
 
#
89
 
do_stop()
90
 
{
91
 
        # Return
92
 
        #   0 if daemon has been stopped
93
 
        #   1 if daemon was already stopped
94
 
        #   2 if daemon could not be stopped
95
 
        #   other if a failure occurred
96
 
        start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $DAEMON_NAME
97
 
        RETVAL="$?"
98
 
        [ "$RETVAL" = 2 ] && return 2
99
 
        # Wait for children to finish too if this is a daemon that forks
100
 
        # and if the daemon is only ever run from this initscript.
101
 
        # If the above conditions are not satisfied then add some other code
102
 
        # that waits for the process to drop all resources that could be
103
 
        # needed by services started subsequently.  A last resort is to
104
 
        # sleep for some time.
105
 
        #start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
106
 
        [ "$?" = 2 ] && return 2
107
 
        # Many daemons don't delete their pidfiles when they exit.
108
 
        rm -f $PIDFILE
109
 
        return "$RETVAL"
110
 
}
111
 
 
112
 
#
113
 
# Function that sends a SIGHUP to the daemon/service
114
 
#
115
 
do_reload() {
116
 
        #
117
 
        # If the daemon can reload its configuration without
118
 
        # restarting (for example, when it is sent a SIGHUP),
119
 
        # then implement that here.
120
 
        #
121
 
        start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $DAEMON_NAME
122
 
        return 0
123
 
}
124
 
 
125
 
case "$1" in
126
 
        start)
127
 
                check_for_upstart 1
128
 
                [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC " "$NAME"
129
 
                do_start
130
 
                case "$?" in
131
 
                        0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
132
 
                        2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
133
 
                esac
134
 
                ;;
135
 
        stop)
136
 
                check_for_upstart 0
137
 
                [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
138
 
                do_stop
139
 
                case "$?" in
140
 
                        0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
141
 
                        2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
142
 
                esac
143
 
                ;;
144
 
        status)
145
 
                check_for_upstart 1
146
 
                status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
147
 
                ;;
148
 
        reload|force-reload)
149
 
                #
150
 
                # If do_reload() is not implemented then leave this commented out
151
 
                # and leave 'force-reload' as an alias for 'restart'.
152
 
                #
153
 
                log_daemon_msg "Reloading $DESC" "$NAME"
154
 
                do_reload
155
 
                log_end_msg $?
156
 
                ;;
157
 
        restart|force-reload)
158
 
                check_for_upstart 1
159
 
                #
160
 
                # If the "reload" option is implemented then remove the
161
 
                # 'force-reload' alias
162
 
                #
163
 
                log_daemon_msg "Restarting $DESC" "$NAME"
164
 
                do_stop
165
 
                case "$?" in
166
 
                        0|1)
167
 
                                do_start
168
 
                                case "$?" in
169
 
                                        0) log_end_msg 0 ;;
170
 
                                        1) log_end_msg 1 ;; # Old process is still running
171
 
                                        *) log_end_msg 1 ;; # Failed to start
172
 
                                esac
173
 
                                ;;
174
 
                        *)
175
 
                                # Failed to stop
176
 
                                log_end_msg 1
177
 
                                ;;
178
 
                esac
179
 
                ;;
180
 
        *)
181
 
                #echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
182
 
                echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2
183
 
                exit 3
184
 
                ;;
185
 
esac
186
 
 
187
 
: