1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/ctdb/config
Ralph Boehme 530e8d4b9e ctdb-scripts: filter out comments in public_addresses file
Note that order of sed expressions matters: the expression to delete
comment lines must come first as the second expression would transform

  # comment

to

  comment

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14826

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
2021-10-12 22:38:32 +00:00
..
events ctdb-scripts: filter out comments in public_addresses file 2021-10-12 22:38:32 +00:00
nfs-checks.d
ctdb-crash-cleanup.sh
ctdb.conf
ctdb.init
ctdb.service
ctdb.sudoers
ctdb.sysconfig
ctdb.tunables
ctdbd_wrapper
debug_locks.sh ctdb-scripts: Add lock debugging for tdb mutex locks 2021-05-28 06:46:29 +00:00
debug-hung-script.sh
functions ctdb-scripts: filter out comments in public_addresses file 2021-10-12 22:38:32 +00:00
nfs-linux-kernel-callout ctdb-scripts: Ignore ShellCheck SC3013 for test -nt 2021-06-25 10:06:48 +00:00
notification.README
notify.sh
README
script.options
statd-callout

This directory contains run-time support scripts for CTDB.

Selected highlights:

  ctdb.init

    An initscript for starting ctdbd at boot time.

  events/

    Eventscripts.  See events/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.