1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/ctdb/config
Martin Schwenke d7f3b1977f ctdb-scripts: Avoid shellcheck warning SC2039 (echo -n)
SC2039: In POSIX sh, echo flags are not supported.

echo -n is well supported but the changes are simple.

Improve some logic, replace some instances with printf.  Who knew
printf was in POSIX?

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
2016-07-21 02:24:26 +02:00
..
events.d ctdb-scripts: Avoid shellcheck warning SC2039 (echo -n) 2016-07-21 02:24:26 +02:00
nfs-checks.d ctdb-scripts: Move 60.nfs Ganesha callout to doc/examples/ 2015-07-21 07:54:09 +02:00
ctdb-crash-cleanup.sh ctdb-scripts: Update script boilerplate to avoid shellcheck warnings 2016-07-06 04:28:09 +02:00
ctdb.init ctdb-scripts: Avoid shellcheck warning SC2039 (echo -n) 2016-07-21 02:24:26 +02:00
ctdb.service
ctdb.sudoers ctdb-scripts: Update important installed files to use build-time defaults 2015-09-15 08:56:21 +02:00
ctdb.sysconfig ctdb-scripts: Add new configuration variable CTDB_MAX_OPEN_FILES 2015-04-30 06:45:26 +02:00
ctdbd_wrapper ctdb-scripts: Avoid shellcheck warnings SC2119, SC2120 (function arguments) 2016-07-21 02:24:26 +02:00
debug_locks.sh ctdb-scripts: Avoid shellcheck warning SC2002 (useless cat) 2016-07-21 02:24:26 +02:00
debug-hung-script.sh ctdb-scripts: Quote some variable expansions 2016-07-06 08:15:49 +02:00
functions ctdb-scripts: Avoid shellcheck warning SC2039 (echo -n) 2016-07-21 02:24:26 +02:00
gcore_trace.sh
nfs-linux-kernel-callout ctdb-scripts: Quote some variable expansions 2016-07-06 08:15:49 +02:00
notify.d.README
notify.sh ctdb-scripts: Quote some variable expansions 2016-07-06 08:15:49 +02:00
README
statd-callout ctdb-scripts: Avoid shellcheck warning SC2002 (useless cat) 2016-07-21 02:24:26 +02: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.