1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-06 13:18:07 +03:00
samba-mirror/ctdb/tests/etc-ctdb/events/legacy/00.test.script

31 lines
459 B
Plaintext
Raw Normal View History

#!/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 }$*"