mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
4023576e50
instead for from /etc/ctdb/events so that we can get better debugging output in the logs when something fails in the scripts (This used to be ctdb commit 4ed96b768aea1611e8002f7095d3c4d12ccf77a3)
40 lines
998 B
Bash
Executable File
40 lines
998 B
Bash
Executable File
#!/bin/sh
|
|
############################
|
|
# main event script for ctdb
|
|
#
|
|
# This script is called with one of the following sets of arguments
|
|
# startup : called when ctdb starts
|
|
# shutdown : called when ctdb shuts down
|
|
# takeip : called when an IP address is taken over
|
|
# releaseip : called when an IP address is released
|
|
# recovered : called when ctdb has finished a recovery event
|
|
|
|
. /etc/ctdb/functions
|
|
loadconfig ctdb
|
|
|
|
# ensure we have /bin and /usr/bin in the path
|
|
PATH=/bin:/usr/bin:$PATH
|
|
|
|
cmd="$1"
|
|
shift
|
|
|
|
case $cmd in
|
|
startup)
|
|
# make sure we have a blank state directory for the scripts to work with
|
|
/bin/rm -rf /etc/ctdb/state
|
|
/bin/mkdir -p /etc/ctdb/state
|
|
|
|
# set any tunables from the config file
|
|
set | grep ^CTDB_SET_ | cut -d_ -f3- |
|
|
while read v; do
|
|
varname=`echo $v | cut -d= -f1`
|
|
value=`echo $v | cut -d= -f2`
|
|
ctdb setvar $varname $value || exit 1
|
|
echo "`date` Set $varname to $value"
|
|
done
|
|
;;
|
|
esac
|
|
|
|
# all OK
|
|
exit 0
|