Commit d47d0b1d by Brian Coca

now continue/abort mode allows ignoring other input

parent a555a065
...@@ -135,11 +135,10 @@ class ActionModule(ActionBase): ...@@ -135,11 +135,10 @@ class ActionModule(ActionBase):
if seconds is not None: if seconds is not None:
signal.alarm(0) signal.alarm(0)
self._display.display("Press 'C' to continue the play or 'A' to abort \r"), self._display.display("Press 'C' to continue the play or 'A' to abort \r"),
key_pressed = self._connection._new_stdin.read(1) if self._c_or_a():
if key_pressed.lower() == 'a':
raise AnsibleError('user requested abort!')
elif key_pressed.lower() == 'c':
break break
else:
raise AnsibleError('user requested abort!')
except AnsibleTimeoutExceeded: except AnsibleTimeoutExceeded:
# this is the exception we expect when the alarm signal # this is the exception we expect when the alarm signal
...@@ -163,3 +162,10 @@ class ActionModule(ActionBase): ...@@ -163,3 +162,10 @@ class ActionModule(ActionBase):
return result return result
def _c_or_a(self):
while True:
key_pressed = self._connection._new_stdin.read(1)
if key_pressed.lower() == 'a':
return False
elif key_pressed.lower() == 'c':
return True
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment