Re: [ansible-devel] Ansible async module issue

2020-04-02 Thread Adam Miller
On Thu, Mar 26, 2020 at 4:06 AM Aditya wrote: > > I am working on an ansible playbook, which runs a shell script in async ( > poll = 0 ) mode. > > This shell script, which runs on remote host #1, calls a python program on > remote host #2, which runs for a long duration. > > So the flow is somet

[ansible-devel] Ansible async module issue

2020-03-26 Thread Aditya
I am working on an ansible playbook, which runs a shell script in async ( poll = 0 ) mode. This shell script, which runs on remote host #1, calls a python program on remote host #2, which runs for a long duration. So the flow is something like: ansible > shell script on remote host #1 ---