mirror of
https://github.com/samba-team/samba.git
synced 2025-01-28 17:47:29 +03:00
df39a671db
Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit eb13507713ba6732271b7c3024bfddbda6da5ffc)
16 lines
393 B
Bash
Executable File
16 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "mountd down, 10 iterations, back up after 5"
|
|
|
|
setup_nfs
|
|
rpc_services_down "mountd"
|
|
|
|
# Iteration 5 should try to restart rpc.mountd. However, our test
|
|
# stub rpc.mountd does nothing, so we have to explicitly flag it as
|
|
# up.
|
|
iterate_test 10 "ok_null" \
|
|
5 "rpc_set_service_failure_response 'mountd'" \
|
|
6 "rpc_services_up mountd"
|