Upgraded ansible to
$ ansible --version
ansible 2.9.0.dev0
config file = /Users/tanner/projects/ansible.git/playbooks.git/celadonsystems.com/ansible.cfg
configured module search path = [u’/Users/tanner/.ansible/plugins/modules’, u’/usr/share/ansible/plugins/modules’]
ansible python module location = /Users/tanner/projects/ansible.git/ansible/lib/ansible
executable location = /Users/tanner/projects/ansible.git/ansible/bin/ansible
python version = 2.7.10 (default, Feb 22 2019, 21:55:15) [GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)]
And now random playbooks and tasks just hang in unusual places.
Before the upgrade of ansible all this playbooks and tasks worked as expected.
`
- name: Install programs (choco)
win_chocolatey:
name: “{{ item }}”
state: “present”
when: - chocolatey_packages is defined
loop: “{{ chocolatey_packages|flatten(levels=1) }}”
`
The above is a task that randomly hangs.
<win2016.LAB.testing.com> ESTABLISH WINRM CONNECTION FOR USER: Administrator@LAB.testing.com on PORT 5986 TO win2016.LAB.testing.com Using module file /Users/tanner/projects/ansible.git/ansible/lib/ansible/modules/windows/win_chocolatey.ps1 Pipelining is enabled.
I’ve let this sit for 12 hours.
No timeouts. No errors.
$ python -V
Python 2.7.10
Management host: macOS Mojave 10.14.5
Managed host: Windows Server 2016
$ kinit --version
kinit (Heimdal 1.5.1apple1)
Copyright 1995-2011 Kungliga Tekniska Högskolan
Send bug-reports to heimdal-bugs@h5l.org
This feels like a personal problem or a python-2.7 problem (still in progress of upgrading to python3)
I didn’t open an issue because I’d like to learn how to report more(?) better(?) info regarding this issue.
Any help would be appreciated.
Thanks.