Re: [ansible-project] ansible_host + proxy + windows servers (WinRM) not working

2017-08-14 Thread Mike Klebolt
I was able to resolve this issue by modifying one of the lines in transport.py for pywinrm. session.trust_env = True changed to: session.trust_env = False > -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To

Re: [ansible-project] ansible_host + proxy + windows servers (WinRM) not working

2017-08-10 Thread Kai Stian Olstad
On 10. aug. 2017 19:04, Kai Stian Olstad wrote: On 10. aug. 2017 17:29, Mike Klebolt wrote: I was wondering if there was a way for ansible to set up a local environment (not remote) during a playbook run that would setup no_proxy on its own. Any help is greatly appreciated. Thanks! Check

Re: [ansible-project] ansible_host + proxy + windows servers (WinRM) not working

2017-08-10 Thread Kai Stian Olstad
On 10. aug. 2017 17:29, Mike Klebolt wrote: I was wondering if there was a way for ansible to set up a local environment (not remote) during a playbook run that would setup no_proxy on its own. Any help is greatly appreciated. Thanks! Check out environment

[ansible-project] ansible_host + proxy + windows servers (WinRM) not working

2017-08-10 Thread Mike Klebolt
Hello, We're using ansible on some windows servers. The ansible_host is configured with a proxy and is preventing us from connecting to the windows hosts. My current workaround involves manually exporting no_proxy with the windows server IPs. While this gets us connected, I still feel like