Re: [ansible-devel] Re: [Urgent help] Ansible for fetching and comparing windows OS configuration, performance stats

2018-03-19 Thread Akash Agarwal
Thanks a lot. On 16 March 2018 at 15:09, 'jhawkesworth' via Ansible Development < ansible-devel@googlegroups.com> wrote: > Hi, some suggestions below... > > On Friday, March 9, 2018 at 4:35:42 AM UTC, Akash Agarwal wrote: >> >> Hi All, >> >> Is there a way to use Ansible to fetch Windows OS

Re: [ansible-devel] [WARNING]: Error in vault password file loading (default)

2018-03-19 Thread Vino B
Hi Adrian, Thank you, please correct me if I am wrong, The vault password file(target.pass) should not be empty and should not be encrypted. The file target.yml which contains the below details should we encrypted. ansible_user: ansible ansible_ssh_pass: test ansible_become_pass: test The

[ansible-devel] Libraries for managing influxdb

2018-03-19 Thread Michael Perzel
We are rolling out influx and I noticed there are libraries for managing databases and retention policies but not continuous queries. http://docs.ansible.com/ansible/latest/influxdb_database_module.html http://docs.ansible.com/ansible/latest/influxdb_retention_policy_module.html Has anyone

Re: [ansible-devel] [WARNING]: Error in vault password file loading (default)

2018-03-19 Thread Adrian Likins
responses inline On Mon, Mar 19, 2018 at 1:34 AM, Vino B wrote: > Hi All, > >Request you help, after upgrade ansible to 2.6 -devel the password > vault is not working as expected, and getting the below error, before the > upgrade it was working fine without any

[ansible-devel] Creation of tables failing when done SHELL Module of Ansible on PostgreSQL

2018-03-19 Thread Tushar Dudhade
I wrote the shell script to be run over the PostgreSQL to create tables in a particular database schema. For users, db and schema creation I am using PostgrSQL Ansible modules but for tables creation I am using the shell module which runs a shell script and creates the tables. For normal

[ansible-devel] Re: [WARNING]: Error in vault password file loading (default)

2018-03-19 Thread Vino B
Hi All, After analyzing further found that when we move the files "target.yml" and "target.pass" to the folder "/home/ansible/.ansible" then the WARNING disappears and get the below error , if these file's "target.yml" and "target.pass" contain plain text then it works fine. so the

Re: [ansible-devel] openstack os_server_facts: some of openstack_servers entries partially replaced by asterisks

2018-03-19 Thread git.user
You are right, thanks for advise. it's here: /usr/lib/python3.5/site-packages/ansible/module_utils/basic.py +452 def _remove_values_conditions(value, no_log_strings, deferred_removals): ... for omit_me in no_log_strings: native_str_value = native_str_value.replace(omit_me, '*'

[ansible-devel] Re: Repeat a task based on a csv string from extra_var

2018-03-19 Thread GoFigure
This has been answered here Thanks On Monday, March 19, 2018 at 12:48:41 PM UTC+11, GoFigure wrote: > > Or should this sort of thing be done via a module? > > Thanks > > On Wednesday, March 14, 2018 at 2:30:07 PM UTC+11,