[ansible-project] Encrypting password without using vault

2016-08-02 Thread Dana Christo
Hi, Is there a way to encrypt a password in the hosts file without using a vault? Thanks! -- 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+u

[ansible-project] Insert hosts and host variables into a python script

2016-07-28 Thread Dana Christo
Hello, Is it possible to take a hostname and other information in the hosts file and insert each one into a python file as an ansible playbook runs the python file for each host? -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscri

Re: [ansible-project] "TASK:" only showing "[command]"

2016-06-14 Thread Dana Christo
Thanks! Is there a way to change that? On Monday, June 13, 2016 at 1:39:15 PM UTC-7, Brian Coca wrote: > > No, in >=2.0 the task name by default does not include all the options > passed as it could disclose sensitive information. > > > -- > Brian Coca > -- You received this message bec

[ansible-project] Connecting to localhost and 127.0.0.1

2016-06-13 Thread Dana Christo
When trying to run a playbook without specifying* -i "localhost," -c local *I get that the host is unreachable, even though I specify the localhost in my /etc/ansible/hosts file:

[ansible-project] "TASK:" only showing "[command]"

2016-06-13 Thread Dana Christo
I'm trying to create a playbook to print "hello world". Here is my playbook: --- - hosts: all tasks: - shell: echo "hello world" When I run *ansible-playbook -i "localhost," -c local hello world.yml *I get the following output: