Sophie

Sophie

distrib > Mageia > 6 > armv5tl > media > core-release > by-pkgid > a4208bb163c7d64ce5cf8e62b0b867d1 > files > 2

ctdb-4.6.5-1.mga6.armv5tl.rpm

#!/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" ] || \
    CTDB_BASE=$(d=$(dirname "$0") ; cd -P "$d" ; 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