Make the size of the in memory ringbuffer for keeping the recent log messages
[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 1
175     }
176
177     build_ctdb_options
178
179     check_persistent_databases || return $?
180
181     if [ yes == "$CTDB_SUPPRESS_COREFILE" ]; then
182         ulimit -c 0
183     else
184         ulimit -c unlimited
185     fi
186
187     case $init_style in
188         valgrind)
189             valgrind -q --log-file=/var/log/ctdb_valgrind \
190                 $ctdbd --valgrinding $CTDB_OPTIONS
191             RETVAL=$?
192             echo
193             ;;
194         suse)
195             startproc $ctdbd $CTDB_OPTIONS
196             rc_status -v
197             RETVAL=$?
198             ;;
199         redhat)
200             daemon $ctdbd $CTDB_OPTIONS
201             RETVAL=$?
202             echo
203             [ $RETVAL -eq 0 ] && touch /var/lock/subsys/ctdb || RETVAL=1
204             ;;
205         debian)
206             start-stop-daemon --start --quiet --background \
207                 --exec $ctdbd -- $CTDB_OPTIONS
208             RETVAL=$?
209             ;;
210     esac
211
212     sleep 1
213
214     set_ctdb_variables
215
216     return $RETVAL
217 }       
218
219 stop() {
220     echo -n $"Shutting down ctdbd service: "
221     pkill -0 -f $ctdbd || {
222         echo -n "  Warning: ctdbd not running ! "
223         case $init_style in
224             suse)
225                 rc_status -v
226                 ;;
227             redhat)
228                 echo ""
229                 ;;
230         esac
231         return 0
232     }
233     ctdb shutdown >/dev/null 2>&1
234     RETVAL=$?
235     count=0
236     while pkill -0 -f $ctdbd ; do
237         sleep 1
238         count=$(($count + 1))
239         [ $count -gt 10 ] && {
240             echo -n $"killing ctdbd "
241             pkill -9 -f $ctdbd
242             pkill -9 -f $CTDB_BASE/events.d/
243         }
244     done
245     case $init_style in
246         suse)
247             # re-set the return code to the recorded RETVAL in order
248             # to print the correct status message
249             set_retval $RETVAL
250             rc_status -v
251             ;;
252         redhat)
253             [ $RETVAL -eq 0 ] && success || failure
254             [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/ctdb
255             echo ""
256             ;;
257     esac
258     return $RETVAL
259 }
260
261 restart() {
262     stop
263     start
264 }       
265
266 status() {
267     echo -n $"Checking for ctdbd service: "
268     ctdb ping >/dev/null 2>&1 || {
269         RETVAL=$?
270         echo -n "  ctdbd not running. "
271         case $init_style in
272             suse)
273                 set_retval $RETVAL
274                 rc_status -v
275                 ;;
276             redhat)
277                 echo ""
278                 ;;
279         esac
280         return $RETVAL
281     }
282     echo ""
283     ctdb status
284 }
285
286
287 case "$1" in
288     start)
289         start
290         ;;
291     stop)
292         stop
293         ;;
294     restart|reload)
295         restart
296         ;;
297     status)
298         status
299         ;;
300     condrestart)
301         ctdb status > /dev/null && restart || :
302         ;;
303     cron)
304         # used from cron to auto-restart ctdb
305         ctdb status > /dev/null || restart
306         ;;
307     *)
308         echo $"Usage: $0 {start|stop|restart|status|cron|condrestart}"
309         exit 1
310 esac
311
312 exit $?