mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
9c6f0dc69b
This is a regression introduced in f227c26178
.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12407
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
Autobuild-User(master): Martin Schwenke <martins@samba.org>
Autobuild-Date(master): Thu Nov 3 10:10:31 CET 2016 on sn-devel-144
30 lines
735 B
Bash
Executable File
30 lines
735 B
Bash
Executable File
#!/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
|