1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00
samba-mirror/ctdb/config
Martin Schwenke 1e4c965f52 eventscripts: NAT gateway script should export CTDB_NATGW_NODES
Otherwise calls to "ctdb natgwlist" will not behave as expected if a
non-standard file is used, since that command will use the default
file location.

Signed-off-by: Martin Schwenke <martin@meltin.net>

(This used to be ctdb commit e574b30257126679704b088c4334a8e7a53a9c3f)
2013-10-22 14:34:04 +11:00
..
events.d eventscripts: NAT gateway script should export CTDB_NATGW_NODES 2013-10-22 14:34:04 +11:00
nfs-rpc-checks.d eventscripts: Become unhealthy faster on nfsd failure 2013-08-14 16:10:30 +10:00
ctdb-crash-cleanup.sh scripts: drop_all_public_ips() now prints messages to stdout, not log 2013-06-20 13:01:09 +10:00
ctdb.init initscript: Simpify initscript and control CTDB via new ctdbd_wrapper 2013-07-10 15:19:27 +10:00
ctdb.service packaging: Add systemd support 2013-07-10 18:14:33 +10:00
ctdb.sudoers statd-callout: Make sure statd callout script always runs as root 2013-04-08 11:14:28 +10:00
ctdb.sysconfig scripts: Remove support for CTDB_OPTIONS configuration variable 2013-10-22 14:34:04 +11:00
ctdbd_wrapper scripts: Remove support for CTDB_OPTIONS configuration variable 2013-10-22 14:34:04 +11:00
debug_locks.sh scripts: Add an example debug_locks.sh script to debug locking issue 2013-07-10 14:33:18 +10:00
debug-hung-script.sh scripts: Do not run ctdb tool commands when debugging hung "init" event 2013-08-09 11:04:55 +10:00
functions scripts: Simplify script_log() to just look at CTDB_SYSLOG variable 2013-10-22 14:34:04 +11:00
gcore_trace.sh common: Debug ctdb_addr_to_str() using new function ctdb_external_trace() 2012-10-18 20:05:42 +11:00
notify.d.README scripts: Rework notify.sh to use notify.d/ directory 2013-05-23 16:18:23 +10:00
notify.sh scripts: Rework notify.sh to use notify.d/ directory 2013-05-23 16:18:23 +10:00
README Eventscript support - Remove unused interface_modify.sh 2012-03-22 15:30:27 +11:00
statd-callout eventscripts: Deprecate NFS_SERVER_MODE, use CTDB_NFS_SERVER_MODE instead 2013-10-22 14:34:03 +11:00

This directory contains run-time support scripts for CTDB.

Selected highlights:

  ctdb.init

    An initscript for starting ctdbd at boot time.

  events.d/

    Eventscripts.  See events.d/README for more details.

  functions

    Support functions, sourced by eventscripts and other scripts.

  statd-callout

    rpc.statd high-availability callout to support lock migration on
    failover.

Notes:

* All of these scripts are written in POSIX Bourne shell.  Please
  avoid bash-isms, including the use of "local" variables (which are
  not available in POSIX shell).

* Do not use absolute paths for commands.  Unit tests attempt to
  replace many commands with stubs and can not do this if commands are
  specified with absolute paths.  The functions file controls $PATH so
  absolute paths should not be required.