3 # This script is activated by setting CTDB_NOTIFY_SCRIPT=/etc/ctdb/notify.sh
4 # in /etc/sysconfig/ctdb
6 # This is script is invoked from ctdb when certain events happen. See
7 # /etc/ctdb/notify.d/README for more details.
14 for i
in "${nd}/"* ; do
15 # Don't run files matching basename
17 *~|
*,|
*.rpm
*|
*.swp|README
) continue ;;
20 # Files must be executable
21 [ -x "$i" ] ||
continue