summaryrefslogtreecommitdiffstats
path: root/ctdb/config/ctdb-crash-cleanup.sh
blob: 78eaa9326549fb48413f3ad78a343a5d4039402a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
#
# This script can be called from a cronjob to automatically drop/release
# all public ip addresses if CTDBD has crashed or stopped running.
#

[ -n "$CTDB_BASE" ] || \
    export CTDB_BASE=$(cd -P $(dirname "$0") ; echo "$PWD")

. "$CTDB_BASE/functions"

# If ctdb is running, just exit
if service ctdb status >/dev/null 2>&1 ; then
    exit 0
fi

loadconfig ctdb

[ -n "$CTDB_PUBLIC_ADDRESSES" ] || \
	CTDB_PUBLIC_ADDRESSES="$CTDB_BASE/public_addresses"

[ -f "$CTDB_PUBLIC_ADDRESSES" ] || \
    die "No public addresses file found. Can't clean up."

drop_all_public_ips 2>&1 | script_log "ctdb-crash-cleanup.sh"

if [ -n "$CTDB_NATGW_PUBLIC_IP" ] ; then
    drop_ip "$CTDB_NATGW_PUBLIC_IP" "ctdb-crash-cleanup.sh"
fi