summaryrefslogtreecommitdiffstats
path: root/ctdb/config/events.d/99.timeout
blob: 2a6495a619360d322c6f318d95928477d403908b (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
#
# Event script to just sleep longer than the timeout
# in the monitor action. The purpose is to trigger
# the event timeout mechanism.

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

. $CTDB_BASE/functions
loadconfig ctdb

[ "$CTDB_RUN_TIMEOUT_MONITOR" = "yes" ] || exit 0

case "$1" in
    monitor)
	TIMEOUT=$(ctdb getvar EventScriptTimeout | awk '{print $3}')
	echo "sleeping for $((TIMEOUT * 2)) seconds..."
	sleep $((TIMEOUT * 2))
	;;


    *)
	ctdb_standard_event_handler "$@"
	;;
esac

exit 0