mirror of
https://github.com/samba-team/samba.git
synced 2025-03-12 20:58:37 +03:00
All of the other uses of ctdb.tdb are in statd-callout. New variable statd_callout_db makes it easy to change the database name in future, perhaps even allowing it to be configurable. Signed-off-by: Martin Schwenke <mschwenke@ddn.com> Reviewed-by: Volker Lendecke <vl@samba.org>
28 lines
476 B
Bash
Executable File
28 lines
476 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "2 x add-client to different nodes, notify on 1"
|
|
|
|
setup
|
|
|
|
ok_null
|
|
simple_test_event "startup"
|
|
simple_test_event "add-client" "192.168.123.45"
|
|
simple_test_event "update"
|
|
|
|
ctdb_set_pnn 1
|
|
|
|
ok_null
|
|
simple_test_event "startup"
|
|
simple_test_event "add-client" "192.168.123.46"
|
|
simple_test_event "update"
|
|
|
|
ctdb_set_pnn 0
|
|
|
|
check_statd_callout_smnotify "192.168.123.45"
|
|
|
|
ctdb_set_pnn 1
|
|
|
|
check_ctdb_tdb_statd_state "192.168.123.46"
|