mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
18 lines
462 B
Bash
18 lines
462 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. "${EVENTSCRIPTS_TESTS_DIR}/common.sh"
|
||
|
|
||
|
define_test "lockd down, 15 iterations"
|
||
|
|
||
|
# This simulates an ongoing failure in the eventscript's automated
|
||
|
# attempts to restart the service. That is, the eventscript is unable
|
||
|
# to restart the service.
|
||
|
|
||
|
setup_nfs
|
||
|
rpc_services_down "nlockmgr"
|
||
|
|
||
|
#EVENTSCRIPTS_TESTS_TRACE="sh -x"
|
||
|
iterate_test 15 "ok_null" \
|
||
|
10 "rpc_set_service_failure_response 'lockd'" \
|
||
|
15 "rpc_set_service_failure_response 'lockd'"
|