mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
ovirt_hosts: Fix failed_state after PM fence (#38102)
This commit is contained in:
@@ -539,7 +539,7 @@ def main():
|
||||
action='fence',
|
||||
action_condition=lambda h: h.status == hoststate.DOWN,
|
||||
wait_condition=lambda h: h.status in [hoststate.UP, hoststate.MAINTENANCE],
|
||||
fail_condition=failed_state,
|
||||
fail_condition=hosts_module.failed_state_after_reinstall,
|
||||
fence_type='start',
|
||||
)
|
||||
elif state == 'stopped':
|
||||
@@ -560,7 +560,7 @@ def main():
|
||||
ret = hosts_module.action(
|
||||
action='fence',
|
||||
wait_condition=lambda h: h.status == hoststate.UP,
|
||||
fail_condition=failed_state,
|
||||
fail_condition=hosts_module.failed_state_after_reinstall,
|
||||
fence_type='restart',
|
||||
)
|
||||
elif state == 'reinstalled':
|
||||
|
||||
Reference in New Issue
Block a user