1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/ctdb/tests/etc-ctdb/events/legacy/00.test.script
Martin Schwenke 19de5f463d ctdb-tests: Use local_daemons.sh in local_daemons.bash
The etc-ctdb/ subdirectory containing the event script moves into the
top-level tests/ directory because the subdirectory is really now
owned by local_daemons.sh instead of simple/.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
2018-11-06 07:16:17 +01:00

31 lines
459 B
Bash
Executable File

#!/bin/sh
# event script for 'make test'
. "${CTDB_BASE}/functions"
load_script_options
ctdb_check_args "$@"
event="$1"
shift
case "$event" in
monitor)
if [ "$CTDB_RUN_TIMEOUT_MONITOR" = "yes" ] ; then
timeout=9999
echo "Sleeping for ${timeout} seconds..."
sleep $timeout
fi
;;
startup)
ifaces=$(ctdb ifaces -X | tail -n +2 | cut -d '|' -f2)
for i in $ifaces; do
ctdb setifacelink "$i" up
done
;;
esac
echo "${event} event${*:+ for }$*"