1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/ctdb/config/events.d
Martin Schwenke e70e77383c ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP
This has bit-rotted, at least for NFS.  It can be fixed but it is
better to remove it because it adds a lot of unnecessary complexity.

Variable event_name becomes unused so remove it.  Also remove
associated tests.

To continue to manage/unmanage services while CTDB is running:

* Start service by hand and then flag it as managed

* Mark service as unmanaged and shut it down by hand

In some cases CTDB does something fancy - e.g. start Samba under
"nice", so care is needed.  One technique is to disable the
eventscript, mark as managed, run the startup event by hand and then
re-enable the eventscript.

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
2017-01-16 11:57:07 +01:00
..
00.ctdb ctdb-scripts: Avoid shellcheck warning SC2012 (ls for file list) 2016-07-21 02:24:27 +02:00
01.reclock ctdb-scripts: Drop use of ctdb_check_counter from reclock event script 2016-07-21 02:24:25 +02:00
05.system ctdb-scripts: Avoid shellcheck warning SC2154 (unassigned variables) 2016-07-21 02:24:26 +02:00
06.nfs ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
10.external ctdb-scripts: Avoid shellcheck warning SC2154 (unassigned variables) 2016-07-21 02:24:26 +02:00
10.interface ctdb-scripts: Add early exit for redundant updateip 2016-08-17 23:00:26 +02:00
11.natgw ctdb-scripts: Avoid shellcheck warning SC2154 (unassigned variables) 2016-07-21 02:24:26 +02:00
11.routing ctdb-scripts: Event script indentation and whitespace cleanups 2016-07-21 02:24:25 +02:00
13.per_ip_routing ctdb-scripts: Add explicit check for service reconfiguration 2016-12-16 08:42:32 +01:00
20.multipathd ctdb-scripts: Avoid shellcheck warning SC2039 (echo -n) 2016-07-21 02:24:26 +02:00
31.clamd ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
40.vsftpd ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
41.httpd ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
49.winbind ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
50.samba ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
60.nfs ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
70.iscsi ctdb-scripts: Drop configuration variable CTDB_SERVICE_AUTOSTARTSTOP 2017-01-16 11:57:07 +01:00
91.lvs ctdb-scripts: Avoid shellcheck warning SC2039 (type command) 2016-07-21 02:24:26 +02:00
99.timeout ctdb-scripts: Event script indentation and whitespace cleanups 2016-07-21 02:24:25 +02:00
README ctdb-docs: Rewrite event script documentation 2015-12-04 09:17:17 +01:00

The events.d/ directory contains event scripts used by CTDB.  Event
scripts are triggered on certain events, such as startup, monitoring
or public IP allocation.  Scripts may be specific to services,
networking or internal CTDB operations.

All event scripts start with the prefix 'NN.' where N is a digit.  The
event scripts are run in sequence based on NN.  Thus 10.interface will
be run before 60.nfs.  It is recommended to keep each NN unique.
However, scripts with the same NN prefix will be executed in
alphanumeric sort order.

As a special case, any eventscript that ends with a '~' character will be
ignored since this is a common postfix that some editors will append to
older versions of a file.

Only executable event scripts are run by CTDB.  Any event script that
does not have execute permission is ignored.

The eventscripts are called with varying number of arguments.  The
first argument is the event name and the rest of the arguments depend
on the event name.

Event scripts must return 0 for success and non-zero for failure.

Output of event scripts is logged.  On failure the output of the
failing event script is included in the output of "ctdb scriptstatus".

The following events are supported (with arguments shown):

init

	This event is triggered once when CTDB is starting up.  This
	event is used to do some basic cleanup and initialisation.

	During the "init" event CTDB is not listening on its Unix
	domain socket, so the "ctdb" CLI will not work.

	Failure of this event will cause CTDB to terminate.

	Example: 00.ctdb creates $CTDB_SCRIPT_VARDIR

setup

	This event is triggered once, after the "init" event has
	completed.

	For this and any subsequent events the CTDB Unix domain socket
	is available, so the "ctdb" CLI will work.

	Failure of this event will cause CTDB to terminate.

	Example: 00.ctdb processes tunables defined in the CTDB
        configuration using CTDB_SET_<TunableName>=<TunableValue>.

startup

	This event is triggered after the "setup" event has completed
	and CTDB has finished its initial database recovery.

	This event starts all services that are managed by CTDB.  Each
	service that is managed by CTDB should implement this event
	and use it to (re)start the service.

	If the "startup" event fails then CTDB will retry it until it
	succeeds.  There is no limit on the number of retries.

	Example: 50.samba uses this event to start the Samba daemon if
	CTDB_MANAGES_SAMBA=yes.

shutdown

	This event is triggered when CTDB is shutting down.

	This event shuts down all services that are managed by CTDB.
	Each service that is managed by CTDB should implement this
	event and use it to stop the service.

	Example: 50.samba uses this event to shut down the Samba
	daemon if CTDB_MANAGES_SAMBA=yes.

monitor

	This event is run periodically.  The interval between
	successive "monitor" events is configured using the
	MonitorInterval tunable, which defaults to 15 seconds.

	This event is triggered by CTDB to continuously monitor that
	all managed services are healthy.  If all event scripts
	complete then the monitor event successfully then the node is
	marked HEALTHY.  If any event script fails then no subsequent
	scripts will be run for that event and the node is marked
	UNHEALTHY.

	Each service that is managed by CTDB should implement this
	event and use it to monitor the service.

	Example: 10.interface checks that each configured interface
	for public IP addresses has a physical link established.

startrecovery

	This event is triggered every time a database recovery process
	is started.

	This is rarely used.

recovered

	This event is triggered every time a database recovery process
	is completed.

	This is rarely used.

takeip <interface> <ip-address> <netmask-bits>

	This event is triggered for each public IP address taken by a
	node during IP address (re)assignment.  Multiple "takeip"
	events can be run in parallel if multiple IP addresses are
	being assigned.

	Example: In 10.interface the "ip" command (from the Linux
	iproute2 package) is used to add the specified public IP
	address to the specified interface.  The "ip" command can
	safely be run concurrently.  However, the "iptables" command
	cannot be run concurrently so a wrapper is used to serialise
	runs using exclusive locking.

	If substantial work is required to reconfigure a service when
	a public IP address is taken over it can be better to defer
	service reconfiguration to the "ipreallocated" event, after
	all IP addresses have been assigned.

	Example: 60.nfs uses ctdb_service_set_reconfigure() to flag
	that public IP addresses have changed so that service
	reconfiguration will occur in the "ipreallocated" event.

releaseip <interface> <ip-address> <netmask-bits>

	This event is triggered for each public IP address released by
	a node during IP address (re)assignment.  Multiple "releaseip"
	events can be run in parallel if multiple IP addresses are
	being unassigned.

	In all other regards, this event is analogous to the "takeip"
	event above.

updateip <old-interface> <new-interface> <ip-address> <netmask-bits>

	This event is triggered for each public IP address moved
	between interfaces on a node during IP address (re)assignment.
	Multiple "updateip" events can be run in parallel if multiple
	IP addresses are being moved.

        This event is only used if multiple interfaces are capable of
        hosting an IP address, as specified in the public addresses
        configuration file.

	This event is similar to the "takeip" event above.

ipreallocated

	This event is triggered after "releaseip", "takeip" and
	"updateip" events during public IP address (re)assignment.

	This event is used to reconfigure services.

        This event runs even if public IP addresses on a node have not
	been changed.  This allows reconfiguration to depend on the
	states of other nodes rather that just IP addresses.

	Example: 11.natgw recalculates the NAT gateway master and
	updates the relevant network configuration on each node if the
	NAT gateway master has changed.

Additional notes for "takeip", "releaseip", "updateip",
ipreallocated":

* Failure of any of these events causes IP allocation to be retried.

* The "ipreallocated" event is run on all nodes.  It is even run if no
  "takeip", "releaseip" or "updateip" events were triggered.

* An event script can use ctdb_service_set_reconfigure() in "takeip"
  or "releaseip" events to flag that its service needs to be
  reconfigured.  The event script can then define a
  service_reconfigure() function, which will be implicitly run before
  the "ipreallocated" event.  This is a useful way of performing
  reconfiguration that is conditional upon public IP address changes.

  This means an explicit "ipreallocated" event handler is usually not
  necessary.