ovirt_hosts: Fix failed_state after PM fence (#38102)

pull/38138/head
Ondra Machacek 7 years ago committed by ansibot
parent 1c00a14c31
commit 477a602fdf

@ -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':

Loading…
Cancel
Save