From Sumit Bose <sbose@redhat.com>
[metze/ctdb/wip.git] / config / ctdb.init
1 #!/bin/sh
2 #
3 ##############################
4 # ctdb:                        Starts the clustered tdb daemon
5 #
6 # chkconfig:           - 90 01
7 #
8 # description:                 Starts and stops the clustered tdb daemon
9 # pidfile:             /var/run/ctdbd/ctdbd.pid
10 #
11
12 ### BEGIN INIT INFO
13 # Provides:            ctdb
14 # Required-Start:      $network
15 # Required-Stop:       $network
16 # Default-Stop:
17 # Default-Start:       3 5
18 # Short-Description:   start and stop ctdb service
19 # Description:         initscript for the ctdb service
20 ### END INIT INFO
21
22 # Source function library.
23 if [ -f /etc/init.d/functions ] ; then
24     . /etc/init.d/functions
25 elif [ -f /etc/rc.d/init.d/functions ] ; then
26     . /etc/rc.d/init.d/functions
27 fi
28
29 [ -f /etc/rc.status ] && {
30     . /etc/rc.status
31     rc_reset
32     LC_ALL=en_US.UTF-8
33 }
34
35 # Avoid using root's TMPDIR
36 unset TMPDIR
37
38 [ -z "$CTDB_BASE" ] && {
39     export CTDB_BASE="/etc/ctdb"
40 }
41
42 . $CTDB_BASE/functions
43 loadconfig network
44 loadconfig ctdb
45
46 # check networking is up (for redhat)
47 [ "$NETWORKING" = "no" ] && exit 0
48
49 detect_init_style
50 export CTDB_INIT_STYLE
51
52 ctdbd=${CTDBD:-/usr/sbin/ctdbd}
53
54 if [ "$CTDB_VALGRIND" = "yes" ]; then
55     init_style="valgrind"
56 else
57     init_style="$CTDB_INIT_STYLE"
58 fi
59
60 build_ctdb_options () {
61
62     maybe_set () {
63         # If the 2nd arg is null then return - don't set anything.
64         # Else if the 3rd arg is set and it doesn't match the 2nd arg
65         # then return
66         [ -z "$2" -o \( -n "$3" -a "$3" != "$2" \) ] && return
67
68         val="'$2'"
69         case "$1" in
70             --*) sep="=" ;;
71             -*)  sep=" " ;;
72         esac
73         # For these options we're only passing a value-less flag.
74         [ -n "$3" ] && {
75             val=""
76             sep=""
77         }
78
79         CTDB_OPTIONS="${CTDB_OPTIONS}${CTDB_OPTIONS:+ }${1}${sep}${val}"
80     }
81
82     [ -z "$CTDB_RECOVERY_LOCK" ] && {
83         echo "No recovery lock specified. Starting CTDB without split brain prevention"
84     }
85     maybe_set "--reclock"                "$CTDB_RECOVERY_LOCK"
86
87     # build up CTDB_OPTIONS variable from optional parameters
88     maybe_set "--logfile"                "$CTDB_LOGFILE"
89     maybe_set "--nlist"                  "$CTDB_NODES"
90     maybe_set "--socket"                 "$CTDB_SOCKET"
91     maybe_set "--public-addresses"       "$CTDB_PUBLIC_ADDRESSES"
92     maybe_set "--public-interface"       "$CTDB_PUBLIC_INTERFACE"
93     maybe_set "--dbdir"                  "$CTDB_DBDIR"
94     maybe_set "--dbdir-persistent"       "$CTDB_DBDIR_PERSISTENT"
95     maybe_set "--event-script-dir"       "$CTDB_EVENT_SCRIPT_DIR"
96     maybe_set "--transport"              "$CTDB_TRANSPORT"
97     maybe_set "-d"                       "$CTDB_DEBUGLEVEL"
98     maybe_set "--notification-script"    "$CTDB_NOTIFY_SCRIPT"
99     maybe_set "--start-as-disabled"      "$CTDB_START_AS_DISABLED"    "yes"
100     maybe_set "--start-as-stopped "      "$CTDB_START_AS_STOPPED"     "yes"
101     maybe_set "--no-recmaster"           "$CTDB_CAPABILITY_RECMASTER" "no"
102     maybe_set "--no-lmaster"             "$CTDB_CAPABILITY_LMASTER"   "no"
103     maybe_set "--lvs --single-public-ip" "$CTDB_LVS_PUBLIC_IP"
104     maybe_set "--script-log-level"       "$CTDB_SCRIPT_LOG_LEVEL"
105     maybe_set "--log-ringbuf-size"       "$CTDB_LOG_RINGBUF_SIZE"
106     maybe_set "--syslog"                 "$CTDB_SYSLOG"               "yes"
107     maybe_set "--max-persistent-check-errors" "$CTDB_MAX_PERSISTENT_CHECK_ERRORS"
108 }
109
110 check_tdb () {
111         local PDBASE=$1
112
113         local TDBTOOL_HAS_CHECK=`echo "help" | /usr/bin/tdbtool | grep check | wc -l`
114
115         test x"$TDBTOOL_HAS_CHECK" = x"1" && {
116                 #
117                 # Note tdbtool always exits with 0
118                 #
119                 local OK=`/usr/bin/tdbtool $PDBASE check | grep "Database integrity is OK" | wc -l`
120                 test x"$OK" = x"1" || {
121                         return 1;
122                 }
123
124                 return 0;
125         }
126
127         /usr/bin/tdbdump $PDBASE >/dev/null 2>/dev/null || {
128                 return $?;
129         }
130
131         return 0;
132 }
133
134 check_persistent_databases () {
135     PERSISTENT_DB_DIR="${CTDB_DBDIR:-/var/ctdb}/persistent"
136     mkdir -p $PERSISTENT_DB_DIR 2>/dev/null
137     local ERRCOUNT=$CTDB_MAX_PERSISTENT_CHECK_ERRORS
138
139     test -z "$ERRCOUNT" && {
140         ERRCOUNT="0"
141     }
142     test x"$ERRCOUNT" != x"0" && {
143         return 0;
144     }
145     for PDBASE in `ls $PERSISTENT_DB_DIR/*.tdb.[0-9] 2>/dev/null`; do
146         check_tdb $PDBASE || {
147             echo "Persistent database $PDBASE is corrupted! CTDB will not start."
148             return 1
149         }
150     done
151 }
152
153 set_ctdb_variables () {
154     # set any tunables from the config file
155     set | grep ^CTDB_SET_ | cut -d_ -f3- | 
156     while read v; do
157         varname=`echo $v | cut -d= -f1`
158         value=`echo $v | cut -d= -f2`
159         ctdb setvar $varname $value || RETVAL=1
160     done || exit 1
161 }
162
163 set_retval() {
164     return $1
165 }
166
167 ctdbd=${CTDBD:-/usr/sbin/ctdbd}
168
169 start() {
170     echo -n $"Starting ctdbd service: "
171
172     ctdb ping >/dev/null 2>&1 && {
173         echo $"CTDB is already running"
174         return 0
175     }
176
177     build_ctdb_options
178
179     check_persistent_databases || return $?
180
181     if [ "$CTDB_SUPPRESS_COREFILE" = "yes" ]; then
182         ulimit -c 0
183     else
184         ulimit -c unlimited
185     fi
186
187     case $init_style in
188         valgrind)
189             eval valgrind -q --log-file=/var/log/ctdb_valgrind \
190                 $ctdbd --valgrinding "$CTDB_OPTIONS"
191             RETVAL=$?
192             echo
193             ;;
194         suse)
195             eval startproc $ctdbd "$CTDB_OPTIONS"
196             rc_status -v
197             RETVAL=$?
198             ;;
199         redhat)
200             eval $ctdbd "$CTDB_OPTIONS"
201             RETVAL=$?
202             [ $RETVAL -eq 0 ] && success || failure
203             echo
204             [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ctdb || RETVAL=1
205             ;;
206         debian)
207             eval start-stop-daemon --start --quiet --background \
208                 --exec $ctdbd -- "$CTDB_OPTIONS"
209             RETVAL=$?
210             ;;
211     esac
212
213     sleep 1
214
215     set_ctdb_variables
216
217     return $RETVAL
218 }
219
220 stop() {
221     echo -n $"Shutting down ctdbd service: "
222     pkill -0 -f $ctdbd || {
223         echo -n "  Warning: ctdbd not running ! "
224         case $init_style in
225             suse)
226                 rc_status -v
227                 ;;
228             redhat)
229                 echo ""
230                 ;;
231         esac
232         return 0
233     }
234     ctdb shutdown >/dev/null 2>&1
235     RETVAL=$?
236     count=0
237     while pkill -0 -f $ctdbd ; do
238         sleep 1
239         count=$(($count + 1))
240         [ $count -gt 10 ] && {
241             echo -n $"killing ctdbd "
242             pkill -9 -f $ctdbd
243             pkill -9 -f $CTDB_BASE/events.d/
244         }
245     done
246     case $init_style in
247         suse)
248             # re-set the return code to the recorded RETVAL in order
249             # to print the correct status message
250             set_retval $RETVAL
251             rc_status -v
252             ;;
253         redhat)
254             [ $RETVAL -eq 0 ] && success || failure
255             [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ctdb
256             echo ""
257             ;;
258     esac
259     return $RETVAL
260 }
261
262 restart() {
263     stop
264     start
265 }
266
267 status() {
268     echo -n $"Checking for ctdbd service: "
269     ctdb ping >/dev/null 2>&1 || {
270         RETVAL=$?
271         echo -n "  ctdbd not running. "
272         case $init_style in
273             suse)
274                 set_retval $RETVAL
275                 rc_status -v
276                 ;;
277             redhat)
278                 if [ -f /var/lock/subsys/ctdb ]; then
279                         echo $"ctdb dead but subsys locked"
280                         RETVAL=2
281                 else
282                         echo $"ctdb is stopped"
283                         RETVAL=3
284                 fi
285                 ;;
286         esac
287         return $RETVAL
288     }
289     echo ""
290     ctdb status
291 }
292
293
294 case "$1" in
295     start)
296         start
297         ;;
298     stop)
299         stop
300         ;;
301     restart|reload|force-reload)
302         restart
303         ;;
304     status)
305         status
306         ;;
307     condrestart|try-restart)
308         ctdb status > /dev/null && restart || :
309         ;;
310     cron)
311         # used from cron to auto-restart ctdb
312         ctdb status > /dev/null || restart
313         ;;
314     *)
315         echo $"Usage: $0 {start|stop|restart|reload|force-reload|status|cron|condrestart|try-restart}"
316         exit 1
317 esac
318
319 exit $?