[ansible-project] Re: Python - ValueError: I/O operation on closed file

2016-03-02 Thread Slim Slam
Looks like this issue was fixed today: https://github.com/ansible/ansible/pull/14755 On Tuesday, March 1, 2016 at 5:02:05 PM UTC-6, Slim Slam wrote: > > Looking at the code for the pause module: > > if seconds is not None: ># setup the alarm handler >signal.signal(signal.SIGALRM,

[ansible-project] Re: Python - ValueError: I/O operation on closed file

2016-03-01 Thread Slim Slam
Looking at the code for the pause module: if seconds is not None: # setup the alarm handler signal.signal(signal.SIGALRM, timeout_handler) signal.alarm(seconds) # show the prompt display.display("Pausing for %d seconds" % seconds) display.display("(ctrl+C then 'C' = continue

[ansible-project] Re: Python - ValueError: I/O operation on closed file

2016-03-01 Thread Slim Slam
I guess I don't even understand why the Ansible "pause" module would care about stdout. J On Monday, February 29, 2016 at 5:51:08 PM UTC-6, Slim Slam wrote: > > Ansible 2.0.1 > > When I ssh into a Linux server and run: > > $ ansible-playbook -vv build.yml > > it runs fine. > > But if I