[ansible-project] Change password of remote hosts

2019-05-19 Thread Kevin Kwon
Hi.. Would you please let me know how can i change the account password? 1. How can i change the password of "root" account ? 2. How can i change the password of "user" account ? Thank you! Kevin -- You received this message because you are subscribed to the Google Groups "Ansible Project"

[ansible-project] Fwd: Us congress hearing of maan alsaan Money laundry قضية الكونغجرس لغسيل الأموال للمليادير معن الصانع

2019-05-19 Thread fafa al
YouTube videos of U.S. Congress money laundering hearing of Saudi Billionaire " Maan Al sanea" with *bank of America* and The owner of Saad Hospital and Schools in the Eastern Province in *Saudi Arabia* and the Chairman of the Board of Directors of Awal Bank in *Bahrain*

[ansible-project] Re: Checking free VG percentage

2019-05-19 Thread Bruno Cochofel
Thanks Kai, that worked. Bruno On Sunday, May 19, 2019 at 2:33:31 PM UTC+1, Bruno Cochofel wrote: > > Hi, > > I'm trying to check if all the VGs on linux servers have less than 20% > using the following: > > --- > - hosts: all > become: True > tasks: > - name: Lists VGs free percentage

Re: [ansible-project] Checking free VG percentage

2019-05-19 Thread Kai Stian Olstad
On 19.05.2019 15:33, Bruno Cochofel wrote: > Hi, > > I'm trying to check if all the VGs on linux servers have less than 20% > using the following: > > --- > - hosts: all >become: True >tasks: > - name: Lists VGs free percentage >debug: msg="VG {{ item.key }} has {{

[ansible-project] Checking free VG percentage

2019-05-19 Thread Bruno Cochofel
Hi, I'm trying to check if all the VGs on linux servers have less than 20% using the following: --- - hosts: all become: True tasks: - name: Lists VGs free percentage debug: msg="VG {{ item.key }} has {{ (item.value.free_g|float * 100 / item.value.size_g|float)|round }}% free)"

[ansible-project] Re: How to use vars to work with to_datetime

2019-05-19 Thread Dan Linder
You're using the "debug:" module to set the "msg" variable so the date value isn't in the "{{ msg }}" variable, rather it's in the "{{ msg.msg }}" variable. Try these lines in stead: - name: FIXED - age of file in days stored in msg set_fact: msg: "{{ (ansible_date_time.epoch|int -

[ansible-project] How to load vars into roles/vars file from set_facts variable vaule

2019-05-19 Thread Saranya N
Hi all , I have multiple vars file in roles/vars directory. I chose the respective var file based on --extra-vars c=01 and use -e DB=ketb-syb-09 to set facts. However I use this -e DB value to deduce many other variables Firstly I used set_facts under my task to set a variable called

Re: [ansible-project] Re: Help with psrp in ansible 2.7

2019-05-19 Thread Gil Shinar
> > Hi Jordan, >> > If you'll ever see this thread again, I just want to emphasize a very important point that I think should be added to your blog. When running ansible on a non-ssh machine, ssh configurations are not being read during the connection phase. Meaning, the only way to use the

[ansible-project] set facts from an arry with white space

2019-05-19 Thread ATHIRA sanoj
Hello Team i am trying to set facts from a json array, since the key contains space i am unable to parse, can someone help me here, i want to set fact as "name": "IN-FG-04" when "vdom": "vdom-shop" - name: Iterate JSON set_fact: app_item: "{{ item['scope member'] }}"