blob: 8ecba5ceeed428a6e5967f4a637bb4441107dece (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "2 x add-client to different nodes, notify on both"
setup
ok_null
simple_test_event "add-client" "192.168.123.45"
simple_test_event "update"
ctdb_set_pnn 1
ok_null
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_statd_callout_smnotify "192.168.123.46"
check_ctdb_tdb_statd_state
|