[ansible-project] Setting ansible_sudo_pass in ansible.cfg?

2015-03-03 Thread Simón Muñoz
Hi all, is it possible to set ansible_sudo_pass in /etc/ansible/ansible.cfg to avoid having to enter the sudo pass in a group of local clients? Thanks in advance, Simon. -- You received this message because you are subscribed to the Google Groups Ansible Project group. To unsubscribe from

Re: [ansible-project] Setting ansible_sudo_pass in ansible.cfg?

2015-03-03 Thread Mirko Friedenhagen
For a bit more security, you might try something I outlined here: http://serverfault.com/a/672769/274263 and here: https://gist.github.com/mfriedenhagen/e488235d732b7becda81 It uses the python-keyring module to ask your local password safe. Regards Mirko --

Re: [ansible-project] Setting ansible_sudo_pass in ansible.cfg?

2015-03-03 Thread Chris Church
It's not possible in ansible.cfg, but could be set in inventory for all hosts, e.g. [all] host1 host2 [all:vars] ansible_sudo_pass=MakeMeASammich On Tue, Mar 3, 2015 at 7:30 AM, Simón Muñoz simon...@gmail.com wrote: Hi all, is it possible to set ansible_sudo_pass in

Re: [ansible-project] Setting ansible_sudo_pass in ansible.cfg?

2015-03-03 Thread Dario Zanzico
On Tue, Mar 3, 2015, at 01:30 PM, Simón Muñoz wrote: Hi all, is it possible to set ansible_sudo_pass in /etc/ansible/ansible.cfg to avoid having to enter the sudo pass in a group of local clients? i think you can set it in the inventory: [all:vars] ansible_sudo_pass= Thanks in advance,