Re: [ansible-project] Re: Steps for ssh forwarding?

2015-02-14 Thread Ananda Debnath
I did manage to get it to work - but it's really ugly :/ I had to change the ProxyCommand directive in the ssh config for the wildcard section to: ProxyCommand sshpass -p 'reallybadpassword' ssh -A root@56.66.3.10 'nc -w 14400 %h %p' I guess Ansible has no way of overriding the ProxyCommand

[ansible-project] Re: Getting error in deploying VMs using Ansible vsphere_guest module

2015-02-14 Thread jnitin80
Thank you Giovanni!! That solved the problem. -Nitin On Thursday, February 12, 2015 at 5:26:43 PM UTC+5:30, jnit...@gmail.com wrote: I am getting below error while using Ansible (version 1.8.2) vSphere_guest module, osboxes@osboxes:~$ ansible-playbook /etc/ansible/playbooks/main.yml -K

Re: [ansible-project] Getting error in deploying VMs using Ansible vsphere_guest module

2015-02-14 Thread Mark Phillips
You might be getting bitten by something I fixed in December... https://github.com/ansible/ansible-modules-core/pull/562 Does it do the same if you use the devel branch? On Friday, 13 February 2015 15:19:17 UTC, Daniel H wrote: Can you post the vsphere_guest task that's failing? I can't pick

Re: [ansible-project] Re: Steps for ssh forwarding?

2015-02-14 Thread Ananda Debnath
Thanks for looking. There are too many current processes dependent on passwords that I'm migrating to Ansible - while converting to keys is partly underway, it won't be complete for a while. There's also a second bootstrapping problem. I'm using Ansible to run baremetal bringup scripts on xen

Re: [ansible-project] request a font change from Lato

2015-02-14 Thread Larry Fast
Thanks Brian PEBKAC - I updated chrome and the problem disappeared. -- You received this message because you are subscribed to the Google Groups Ansible Project group. To unsubscribe from this group and stop receiving emails from it, send an email to

[ansible-project] How can I process an array of private keys during user creation

2015-02-14 Thread Bob Brown
What I have set up so far is working well. My playbook is: --- - hosts: bastion_hosts vars_files: - data/users.yml gather_facts: no sudo: True name: Add/Delete/Update InPowered Users onto an instance. Usually BounceBox tasks: - name: Add Users to the remote system user:

[ansible-project] can't fire and forget from a list - looking for other options

2015-02-14 Thread Larry Fast
I'm trying to work around the following limitation: lookup plugins (with_*) cannot be used with async tasks My objective is to startup a set of listeners on a set of servers using socat. My thwarted plan was Host_vars/hostname listeners: [234, 567, 890] - name: setup listeners

Re: [ansible-project] Getting error in deploying VMs using Ansible vsphere_guest module

2015-02-14 Thread jnitin80
Thanks Mark, Daniel. That was the yml issue. On Saturday, February 14, 2015 at 3:55:27 PM UTC+5:30, Mark Phillips wrote: You might be getting bitten by something I fixed in December... https://github.com/ansible/ansible-modules-core/pull/562 Does it do the same if you use the devel branch?