Re: [ansible-project] Unable to attach an EIP to a VPC Instance

2017-08-03 Thread Stephen Nelson-Smith


On Friday, 4 August 2017 00:30:36 UTC+1, Pshem Kowalczyk wrote:
>
> Hi,
>
> Try specifying "private_ip_address" of the ENI that you're allocating 
> elastic IP to.
>

Thanks - I have added that line, but the outcome is the same.  For clarity, 
I have not created an EIN - I'm just using the interface on the instance, 
but I don't think that's an issue at all.

I'm going to check if I'm using the very latest boot, and also try doing 
this in boto directly - if the issue is in boto directly (and the message 
looks like a boto message, having looked at the src), then it's not 
strictly an Ansible issue, so I'll raise it directly.

Will keep this thread updated.

S.

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/0a7ea791-ea29-43e1-92db-4c466f3cb64a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] How to select hosts based on facts?

2017-08-03 Thread Cev Ing


Am Donnerstag, 3. August 2017 18:58:36 UTC+2 schrieb Michael Ströder:
>
> Cev Ing wrote: 
> > I know that I can write an inventory group containing all Solaris 
> servers. But this 
> > sounds redundant to me. Instead I want Ansible to check if the host is a 
> Solaris host 
> > and if so, apply the role for Solaris systems. 
>
> Maybe this helps: 
>
> https://docs.ansible.com/ansible/latest/group_by_module.html 
>
>
>
That seems to fit. 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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/33da1320-cc9e-422f-92f9-048ffb86f036%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: Not able to ping windows machine through Ansible (winrm using credential option as CredSSP is being used)

2017-08-03 Thread benno joy
Seems like it is using https  5986 and you have specified 5985 , maybe
because there is a ':' in your variable ansible_port:=5985, is this a
typo ? and make sure the variables are applied to the task/play



On Fri, Aug 4, 2017 at 1:02 PM, Soniya panwar  wrote:
> Thanks for the reply,
> i applied all these thing but not able to solve my problem.
>
> please look into the logs also and provide the possible solution:
>
> 2017-08-04 10:19:54,570 urllib3.connectionpool Starting new HTTPS connection
> (1): X.X.X.X
> 2017-08-04 10:19:54,598 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 401 0
> 2017-08-04 10:19:54,599 urllib3.connectionpool Resetting dropped connection:
> X.X.X.X
> 2017-08-04 10:19:54,612 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 401 0
> 2017-08-04 10:19:54,614 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 401 0
> 2017-08-04 10:19:54,616 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 401 0
> 2017-08-04 10:19:54,619 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 401 0
> 2017-08-04 10:19:54,642 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 200 1632
> 2017-08-04 10:19:54,648 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 200 847
> 2017-08-04 10:19:54,653 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 500 1267
>
> 2017-08-04 10:19:54,655 p=8231 u=root |   [WARNING]: FATAL ERROR DURING FILE
> TRANSFER: Traceback (most recent call last):   File
> "/usr/lib/python2.7/site-packages/ansible/plugins/connection/winrm.py", line
> 267, in _winrm_exec self._winrm_send_input(self.protocol, self.shell_id,
> command_id, data, eof=is_last)   File "/usr/lib/python2.7/site-
> packages/ansible/plugins/connection/winrm.py", line 248, in
> _winrm_send_input protocol.send_message(xmltodict.unparse(rq))   File
> "/usr/lib/python2.7/site-
> packages/winrm/protocol.py", line 207, in send_message return
> self.transport.send_message(message)   File
> "/usr/lib/python2.7/site-packages/winrm/transport.py",
> line 202, in send_message raise WinRMTransportError('http',
> error_message) WinRMTransportError: (u'http', u'Bad HTTP response returned
> from server. Code 500')
>
> 2017-08-04 10:19:54,658 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 200 757
> 2017-08-04 10:19:54,660 urllib3.connectionpool https://X.X.X.X:5986 "POST
> /wsman HTTP/1.1" 200 602
> 2017-08-04 10:19:54,665 p=8231 u=root |  X.X.X.X | FAILED! => {
> "failed": true,
> "msg": "winrm send_input failed"
>
>
> On Tuesday, August 1, 2017 at 6:04:32 PM UTC+5:30, To Versus wrote:
>>
>> I think you should run powershell script on your windows machine with
>> -EnableCredSSP option like below.
>>
>> powershell.exe -File ConfigureRemotingForAnsible.ps1 -EnableCredSSP
>>
>> If you have already do this, it is helpful to run ansible module with
>> -v option.
>>
>> ansible windows -m win_ping -v
>>
>> You can see the following statement on the command line if CredSSP
>> authentification mode is properly configured.
>>
>> WINRM CONNECT: transport=credssp endpoint=https://:/wsman
>>
>> As a reference, below is my settings in group variable file:
>>
>> ansible_port: 5986
>> ansible_connection: winrm
>> ansible_winrm_server_cert_validation: ignore
>> ansible_winrm_transport: credssp
>>
>> It is noted that I'm also using the same ansible version 2.3.1.0 on CentOS
>> 7.
>>
> --
> 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+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/ee0e29c2-237b-4fec-adc4-c13141d17f06%40googlegroups.com.
>
> For more options, visit https://groups.google.com/d/optout.

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAFUV_d67v-KiGXggCMK0uWN8jw4DiNDTmJhXyC1q2MDY96ouLA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] How to select hosts based on facts?

2017-08-03 Thread Cev Ing


Am Donnerstag, 3. August 2017 18:43:13 UTC+2 schrieb Kai Stian Olstad:
>
> On 03. aug. 2017 18:01, Cev Ing wrote: 
> > I wrote a role for Solaris systems. And now I would like to apply the 
> role 
> > to all systems, which have been identified by Ansible to be a Solaris 
> host. 
> > 
> > I know that I can write an inventory group containing all Solaris 
> servers. 
> > But this sounds redundant to me. Instead I want Ansible to check if the 
> > host is a Solaris host and if so, apply the role for Solaris systems. 
> > 
> > How can this be done? 
>
> With when 
>
> https://docs.ansible.com/ansible/latest/playbooks_conditionals.html#the-when-statement
>  
>
>
I dont think it is possible to use a when statement on a role. Are you sure?

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/fd76c28a-a263-451a-ae98-bd49e541cd99%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Not able to ping windows machine through Ansible (winrm using credential option as CredSSP is being used)

2017-08-03 Thread Soniya panwar
Thanks for the reply,
i applied all these thing but not able to solve my problem.

please look into the logs also and provide the possible solution:

2017-08-04 10:19:54,570 urllib3.connectionpool Starting new HTTPS 
connection (1): X.X.X.X
2017-08-04 10:19:54,598 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 401 0
2017-08-04 10:19:54,599 urllib3.connectionpool Resetting dropped 
connection: X.X.X.X
2017-08-04 10:19:54,612 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 401 0
2017-08-04 10:19:54,614 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 401 0
2017-08-04 10:19:54,616 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 401 0
2017-08-04 10:19:54,619 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 401 0
2017-08-04 10:19:54,642 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 200 1632
2017-08-04 10:19:54,648 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 200 847
2017-08-04 10:19:54,653 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 500 1267

2017-08-04 10:19:54,655 p=8231 u=root |   [WARNING]: FATAL ERROR DURING 
FILE TRANSFER: Traceback (most recent call last):   File 
"/usr/lib/python2.7/site-packages/ansible/plugins/connection/winrm.py", line
267, in _winrm_exec self._winrm_send_input(self.protocol, 
self.shell_id, command_id, data, eof=is_last)   File 
"/usr/lib/python2.7/site-
packages/ansible/plugins/connection/winrm.py", line 248, in 
_winrm_send_input protocol.send_message(xmltodict.unparse(rq))   File 
"/usr/lib/python2.7/site-
packages/winrm/protocol.py", line 207, in send_message return 
self.transport.send_message(message)   File 
"/usr/lib/python2.7/site-packages/winrm/transport.py",
line 202, in send_message raise WinRMTransportError('http', 
error_message) WinRMTransportError: (u'http', u'Bad HTTP response returned 
from server. Code 500')

2017-08-04 10:19:54,658 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 200 757
2017-08-04 10:19:54,660 urllib3.connectionpool https://X.X.X.X:5986 "POST 
/wsman HTTP/1.1" 200 602
2017-08-04 10:19:54,665 p=8231 u=root |  X.X.X.X | FAILED! => {
"failed": true,
"msg": "winrm send_input failed"


On Tuesday, August 1, 2017 at 6:04:32 PM UTC+5:30, To Versus wrote:
>
> I think you should run powershell script on your windows machine with 
> -EnableCredSSP option like below.
>
> powershell.exe -File ConfigureRemotingForAnsible.ps1 -EnableCredSSP
>
> If you have already do this, it is helpful to run ansible module with 
> -v option.
>
> ansible windows -m win_ping -v
>
> You can see the following statement on the command line if CredSSP 
> authentification mode is properly configured.
>
> WINRM CONNECT: transport=credssp endpoint=https://:/wsman
>
> As a reference, below is my settings in group variable file:
>
> ansible_port: 5986
> ansible_connection: winrm
> ansible_winrm_server_cert_validation: ignore
> ansible_winrm_transport: credssp
>
> It is noted that I'm also using the same ansible version 2.3.1.0 on CentOS 
> 7.
>
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/ee0e29c2-237b-4fec-adc4-c13141d17f06%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: Best practice to change root pass

2017-08-03 Thread Daniel Cure
Hello my dear friend. I really appreciate what you did. I'm so glad and I
hope could help in this group as soon as learn.. Thanks you so much for
your kindly help.

Please let me know if I can help with anything.

Regards

El 1 ago. 2017 2:43 AM, "Cev Ing"  escribió:

>
>
> Am Montag, 31. Juli 2017 23:10:01 UTC+2 schrieb Daniel Cure:
>>
>> what is the best method for changing root password  in linux redhat env.
>>
>>
> Probably the user module.
>
> http://docs.ansible.com/ansible/latest/user_module.html
>
> But the problem with the user module is, that it is quite hard the debug.
>
> You can try this:
>
> - name: Update Root password
>   user:
> name: root
> uid: 0
> gid: 0
> shell: /bin/bash
> password: "{{root_password_hash}}"
> home: /root
> update_password: always
> state: present
>
> Set the variable root_passoword_hash in a vault file.
> http://docs.ansible.com/ansible/latest/playbooks_vault.html
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Ansible Project" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/ansible-project/uJOQJkCSFrE/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> ansible-project+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/ansible-project/77af90bb-34d9-4644-95e3-f6782b065d71%40googlegroups.
> com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAHFsfdnTvKcWdaWtbAYVmmbXL7QSbPtmAP%2B%3DwTNv5-NnpedNJQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: win_package unable to install .exe Chart Director

2017-08-03 Thread Jordan Borean
You would need to find out what the install arguments for a silent install 
are. I believe InstallShield uses '-s' but you would need to determine if 
that is the case with this particular ex. Once you have found out what the 
silent argument is add it to your task like so

- name: install
  win_package:
name: install chartdir
path: C:\Windows\setup_4.0.exe
product_id: '{00065AC0-1AEC-4AB2-B5C3-79FBB228A9A1}'
arguments: '-s'
state: present


-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/7e19b43e-3040-4e1e-b733-a70c54123c78%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Unable to attach an EIP to a VPC Instance

2017-08-03 Thread Pshem Kowalczyk
Hi,

Try specifying "private_ip_address" of the ENI that you're allocating
elastic IP to.

kind regards
Pshem


On Fri, 4 Aug 2017 at 05:36 Stephen Nelson-Smith  wrote:

>
> I'm trying to attach an elastic IP to an instance in a VPC, but despite
> following what seem to be working examples in online documentation, I'm
> getting an error.
>
>
> To keep it as simple as possible, I have:
>
>
> - Launched an instance (using Ansible) in a public VPC subnet
>
> - Manually captured its ID
>
> - Created an elastic IP (using Ansible)
>
> - Manually captured its ID
>
>
> I've then placed these two into the following:
>
>
> - ec2_eip:
>
> in_vpc: yes
>
> aws_access_key: "{{ aws_access_key }}"
>
> aws_secret_key: "{{ aws_secret_key }}"
>
> region: "{{ aws_region }}"
>
> ip: 176.34.177.168
>
> device_id: i-017a9496dc9940cd1
>
>
> The output I get is:
>
>
> fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg":
> "EC2ResponseError: 400 Bad Request\n encoding=\"UTF-8\"?>\nInvalidParameterCombinationYou
> must specify an allocation id when mapping an address to a VPC
> instance14ea5e22-0e38-4392-90bc-48c1837f4a46"}
>
>
> I get the same behaviour when I tie the above tasks together with register
> and facts.
>
>
> Having scoured the documentation, mailing lists, online books, and other
> Google resources, I can't see that I am doing anything wrong.
>
>
> What am I missing?
>
>
> My system:
>
>
> $ lsb_release -a
>
> No LSB modules are available.
>
> Distributor ID: Ubuntu
>
> Description:Ubuntu 16.04.2 LTS
>
> Release:16.04
>
> Codename:   xenial
>
>
> $ ansible --version
>
> ansible 2.3.1.0
>
>   config file =
>
>   configured module search path = Default w/o overrides
>
>   python version = 3.5.2 (default, Nov 17 2016, 17:05:23) [GCC 5.4.0
> 20160609]
>
>
> S.
>
> --
> 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+unsubscr...@googlegroups.com.
> To post to this group, send email to ansible-project@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/ce0ef404-3846-44ee-8f42-f56c267750c6%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAEaZiRXifVuRObvZPFqAmONjXwYN%2B1R2CXy5jZaOgCcE2t0Tog%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Not able to ping windows machine through Ansible (winrm using credential option as CredSSP is being used)

2017-08-03 Thread Chris
Also enable credSSP authorization in winrm on the host:
winrm get winrm/config (to see the settings)
winrm set winrm/config/client/auth @{CredSSP="True"} 
or Set-Item -Path WSMan:\localhost\Service\Auth\CredSSP -Value $true

I would also check to make sure nothing else is using the default SSH 
listener (port 5986)  I don't think you want to use unsecure 5985, so you 
should set the ansible vars to 5986 and https.  If that still doesn't work 
maybe try adding ansible_winrm_transport: CredSSP after 
ansible_connection=winrm.



On Monday, July 31, 2017 at 11:14:30 PM UTC-7, Soniya panwar wrote:

> Hi
> I am running ansible 2.3.1.0 on centos7. The host(windows) machine is 
> windows 8 with powershell.
> I have installed pywinrm[credssp] (Authentication method credSSP is being 
> used) on centos and included windows hostnames in the inventory file. 
>
> Below are the settings in group variables file:
>
> ansible_user=Administrator
> ansible_password=password
> ansible_port:=5985
> ansible_connection=winrm
> ansible_winrm_scheme: http
> ansible_winrm_server_cert_validation=ignore
>
>
> Now, windows machine is pinging form Centos (ping command is returning 
> response). But, ping to windows machine is not successful through ansible:
>
>  ansible windows -m win_ping -v
>
> window | FAILED! => {
> "failed": true,
> "msg": "winrm send_input failed"
> } 
>
> I have also run the powershell script on the windows machine and it worked 
> fine, winrm service is also running.
>
> powershell.exe -File ConfigureRemotingForAnsible.ps1 -verbose
>
> VERBOSE: Verifying WinRM service.
> VERBOSE: PS Remoting is already enabled.
> VERBOSE: SSL listener is already active.
> VERBOSE: Basic auth is already enabled.
> VERBOSE: Firewall rule already exists to allow WinRM HTTPS.
> VERBOSE: HTTP: Enabled | HTTPS: Enabled
> VERBOSE: PS Remoting has been successfully configured for Ansible.
>
> Any ideas what I am doing wrong?
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/9674c3b0-20c3-452e-96cd-dff19972f6bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Ansible tag with include

2017-08-03 Thread Kai Stian Olstad

On 03. aug. 2017 19:05, tailorpr...@gmail.com wrote:


With latest Ansible 2.3.1, I was not able to use tags with include
statemenet

my code looks like this

ansible-playbook -i inventories/app.inventory -v -e "host=resource" test.yml

and heres test.yml.

- include: pipe.yml tags=upgrade source_file=pipe_list.txt


You test.yml is not a valid playbook, so you should have a error message 
indicating that.


--
Kai Stian Olstad

--
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/052636e5-5975-5ae3-9065-96e75b79b0ad%40olstad.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] registered variables being dumped to local files

2017-08-03 Thread Dewey Hylton



On Thursday, August 3, 2017 at 4:16:04 PM UTC-4, Kai Stian Olstad wrote:
>
> On 03. aug. 2017 21:18, dewey@gmail.com  wrote: 
> > capture their report via stdout, and add the reports to a single local 
> file via 
> > local_action. sometimes this works, and sometimes it does not. in all 
> cases i 
> > can see that the report is generated (stdout for each target shows on 
> the 
> > ansible controller during task execution). but sometimes all output for 
> a given 
> > target is missing from the local logfile. here is the playbook: 
> > 
> > --- 
> > - hosts: all 
> > 
> >tasks: 
> >- name: run report 
> >  script: pkgReport.py {{ inventory_hostname }} 
> >  register: report 
> > 
> >- name: build local report 
> >  lineinfile: 
> >  path: "/tmp/pkgReport.txt" 
> >  insertafter: EOF 
> >  line: "{{ item }}" 
> >  state: present 
> >  create: yes 
> >  with_items: "{{ report.stdout.lines }}" 
> >  delegate_to: 127.0.0.1 
> > 
> > 
> > so first question ... can someone point out what i may be doing wrong? 
> > and of course next question ... what is the smartest way of doing this? 
>
> Lets say you have 20 host, then you would have 20 task trying to write 
> to the same file at once(or at least 5 at a time with default, because 
> forks is default set to 5), this will seldom if at all work. 
>
> You can use assemble or the template module, personally I would use the 
> template. 
>
> local_report.j2 
> --- 
> {% for item in ansible_play_hosts %} 
> Report for host {{ item }}: 
> {{ hostvars[item].report.stdout }} 
> {% endfor %} 
>
> And a task to create the file: 
> - name: build local report 
>template: 
>  src: local_report.j2 
>  dest: /tmp/pkgReport.txt 
>run_once: true 
>delegate_to: localhost 
>
> -- 
> Kai Stian Olstad 
>

This makes a lot of sense. I thought i had multiple things running into 
each other, and I suppose
the fact that it seemed to work sometimes threw me off somewhat.

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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/0f0bc15e-8aff-41d4-85bc-af9c953fbeb5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] registered variables being dumped to local files

2017-08-03 Thread Kai Stian Olstad

On 03. aug. 2017 21:18, dewey.hyl...@gmail.com wrote:

capture their report via stdout, and add the reports to a single local file via
local_action. sometimes this works, and sometimes it does not. in all cases i
can see that the report is generated (stdout for each target shows on the
ansible controller during task execution). but sometimes all output for a given
target is missing from the local logfile. here is the playbook:

---
- hosts: all

   tasks:
   - name: run report
 script: pkgReport.py {{ inventory_hostname }}
 register: report

   - name: build local report
 lineinfile:
 path: "/tmp/pkgReport.txt"
 insertafter: EOF
 line: "{{ item }}"
 state: present
 create: yes
 with_items: "{{ report.stdout.lines }}"
 delegate_to: 127.0.0.1


so first question ... can someone point out what i may be doing wrong?
and of course next question ... what is the smartest way of doing this?


Lets say you have 20 host, then you would have 20 task trying to write 
to the same file at once(or at least 5 at a time with default, because 
forks is default set to 5), this will seldom if at all work.


You can use assemble or the template module, personally I would use the 
template.


local_report.j2
---
{% for item in ansible_play_hosts %}
Report for host {{ item }}:
{{ hostvars[item].report.stdout }}
{% endfor %}

And a task to create the file:
- name: build local report
  template:
src: local_report.j2
dest: /tmp/pkgReport.txt
  run_once: true
  delegate_to: localhost

--
Kai Stian Olstad

--
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/c0b29cb4-e286-1ebf-5d04-004011c98754%40olstad.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Install Openstack-Nova ocata using ansible but with RPMs

2017-08-03 Thread Sruthi Ramesh Vani
so which version of ansible can i use to deploy openstack using rpms rather 
than containers?

On Tuesday, August 1, 2017 at 11:56:41 AM UTC-7, Kai Stian Olstad wrote:
>
> On 01. aug. 2017 20:50, Sruthi Ramesh Vani wrote: 
> > Hi, 
> > I am new to OpenStack .I want to install Openstack-Nova ocata using 
> Ansible 
> > but not using containers, but with rpms. 
> > Where should I start? 
> > I couldn't find the support for rpms. 
> Check out the yum module. 
>
> -- 
> Kai Stian Olstad 
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/5865ac18-7828-4cd8-984b-11bad58dde72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] win_package unable to install .exe Chart Director

2017-08-03 Thread daniyal . javed
Hello, I am trying to install Chart Director which is an .exe file with 
ansible. I am trying to use win_package to do the install as I have already 
checked for the registries in the uninstall directory 
(HKLM:Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall) 
after doing a manual install. Heres my playbook:

 - name: install

   win_package:

 name: install chartdir

 path: C:\Windows\setup_4.0.exe

 product_id: '{00065AC0-1AEC-4AB2-B5C3-79FBB228A9A1}' #taken from 
the HKML path above after the manual install

 state: present

After I run the playbook, my playbook just sits there and no information is 
spewed out with -.

Chart Director version im trying to install is 4.0.

Manually, all the InstallShield wizard is 'Next', 'Next', 'Next with no 
other user input. Any help would be appreciated

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/a3cea344-c410-4251-8a1a-4e1fb1070a3b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: registered variables being dumped to local files

2017-08-03 Thread dewey.hyl...@gmail.com
sorry, i pasted an older (broken) yml ...

https://paste.pound-python.org/show/QAOL5ukLVvAtqtCN8I3V/

the difference is "report.stdout" vs "report.stdout.lines" ...
this issue also happens with blockinfile.


- On Aug 3, 2017, at 3:18 PM, dewey hylton dewey.hyl...@gmail.com wrote:

> hi all. i run a python script on a linux server that produces a report 
> relating
> to
> patch levels and such. it's a fairly simple thing that was requested for audit
> purposes. it's a home-grown script. it works fine, and does what it needs to 
> do.
> the report it produces is simply sent to stdout.
> 
> with the hope of producing a single report covering all of these servers, i 
> have
> created a simple playbook which is designed to run the script on all targets,
> capture their report via stdout, and add the reports to a single local file 
> via
> local_action. sometimes this works, and sometimes it does not. in all cases i
> can see that the report is generated (stdout for each target shows on the
> ansible controller during task execution). but sometimes all output for a 
> given
> target is missing from the local logfile. here is the playbook:
> 
> in case it gets munged in email:
>https://paste.pound-python.org/show/Q8hdyPC38ADSYCX82wwV/
> 
> ---
> - hosts: all
> 
>  tasks:
>  - name: run report
>script: pkgReport.py {{ inventory_hostname }}
>register: report
> 
>  - name: build local report
>lineinfile:
>path: "/tmp/pkgReport.txt"
>insertafter: EOF
>line: "{{ item }}"
>state: present
>create: yes
>with_items: "{{ report.stdout.lines }}"
>delegate_to: 127.0.0.1
> 
> 
> so first question ... can someone point out what i may be doing wrong?
> and of course next question ... what is the smartest way of doing this?

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/1411287664.24443.1501789250932.JavaMail.zimbra%40hyltown.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Ansible tag with include

2017-08-03 Thread tailorpreet

With latest Ansible 2.3.1, I was not able to use tags with include 
statemenet

my code looks like this

ansible-playbook -i inventories/app.inventory -v -e "host=resource" test.yml

and heres test.yml. 

- include: pipe.yml tags=upgrade source_file=pipe_list.txt


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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/42bfc9e3-5890-48ba-ae3f-aba89fe8d067%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] registered variables being dumped to local files

2017-08-03 Thread dewey.hyl...@gmail.com
hi all. i run a python script on a linux server that produces a report relating 
to
patch levels and such. it's a fairly simple thing that was requested for audit
purposes. it's a home-grown script. it works fine, and does what it needs to do.
the report it produces is simply sent to stdout.

with the hope of producing a single report covering all of these servers, i have
created a simple playbook which is designed to run the script on all targets,
capture their report via stdout, and add the reports to a single local file via
local_action. sometimes this works, and sometimes it does not. in all cases i
can see that the report is generated (stdout for each target shows on the
ansible controller during task execution). but sometimes all output for a given
target is missing from the local logfile. here is the playbook:

in case it gets munged in email: 
https://paste.pound-python.org/show/Q8hdyPC38ADSYCX82wwV/

---
- hosts: all

  tasks:
  - name: run report
script: pkgReport.py {{ inventory_hostname }}
register: report

  - name: build local report
lineinfile:
path: "/tmp/pkgReport.txt"
insertafter: EOF
line: "{{ item }}"
state: present
create: yes
with_items: "{{ report.stdout.lines }}"
delegate_to: 127.0.0.1


so first question ... can someone point out what i may be doing wrong?
and of course next question ... what is the smartest way of doing this?

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/523452228.24350.1501787892596.JavaMail.zimbra%40hyltown.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: ansible_ssh_pass parameter with salt encrypt value of ansible_user password makes client server Unreachable on playbook run

2017-08-03 Thread Lorenzo Farinas
I also want to know if anyone can help on how to fix this problem as even 
though I put back the plain text password to the ansible_ssh_pass 
parameter, the playbook run would still fail with the server Unreachable on 
the server that had the parameter replaced with its salt encrypt value.

On Friday, July 28, 2017 at 12:58:45 PM UTC-10, Lorenzo Farinas wrote:
>
> I successfully created and tested some Ansible playbooks, that's when 
> ansible_ssh_pass parameter value is the actual password of the ansible_user 
> for the involved server specified in a group in the /etc/ansible/hosts file.  
> But when the ansible_ssh_pass parameter was replaced with its salt encrypt 
> value for security reasons, the playbook run would fail with the server 
> Unreachable.  Please advise.
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/9b0654ce-5120-4e41-abf9-ad6214521615%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Unable to attach an EIP to a VPC Instance

2017-08-03 Thread Stephen Nelson-Smith
 


I'm trying to attach an elastic IP to an instance in a VPC, but despite 
following what seem to be working examples in online documentation, I'm 
getting an error.


To keep it as simple as possible, I have:


- Launched an instance (using Ansible) in a public VPC subnet

- Manually captured its ID

- Created an elastic IP (using Ansible)

- Manually captured its ID


I've then placed these two into the following:


- ec2_eip:

in_vpc: yes

aws_access_key: "{{ aws_access_key }}"

aws_secret_key: "{{ aws_secret_key }}"

region: "{{ aws_region }}"

ip: 176.34.177.168

device_id: i-017a9496dc9940cd1


The output I get is:


fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": 
"EC2ResponseError: 400 Bad Request\n\nInvalidParameterCombinationYou
 
must specify an allocation id when mapping an address to a VPC 
instance14ea5e22-0e38-4392-90bc-48c1837f4a46"}


I get the same behaviour when I tie the above tasks together with register 
and facts.


Having scoured the documentation, mailing lists, online books, and other 
Google resources, I can't see that I am doing anything wrong.


What am I missing?


My system:


$ lsb_release -a

No LSB modules are available.

Distributor ID: Ubuntu

Description:Ubuntu 16.04.2 LTS

Release:16.04

Codename:   xenial


$ ansible --version

ansible 2.3.1.0

  config file = 

  configured module search path = Default w/o overrides

  python version = 3.5.2 (default, Nov 17 2016, 17:05:23) [GCC 5.4.0 
20160609]


S.

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/ce0ef404-3846-44ee-8f42-f56c267750c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] run ios_command in enable mode

2017-08-03 Thread Akku

ansible 2.2.1.0
  config file = /etc/ansible/ansible.cfg
  configured module search path = Default w/o overrides


I am using below ---playbook to show the version of a Cisco router, and 
getting the below error.

- hosts: "{{ target }}"
  connection: local

  tasks:

  - name: Defining the provider
set_fact:
  provider:
host: "{{ target }}"
username: "{{ network_device_user }}"
password: "{{ ansible_ssh_pass }}"
auth_pass: "{{ network_device_enable_pass }}"
port: "{{ port }}"
transport: cli
timeout: 50

  - name: Run Show Version
ios_command:
  provider: "{{ provider }}"
  authorize: yes
  commands:
- show version
register: version
  - debug: var=version.stdout_lines

=

fatal: [10.251.58.221]: FAILED! => {"changed": false, "failed": true, 
"msg": "timeout trying to send command: enable\
r"}

=

If am removing the "authorize: yes" from the task, it works.. 
Do we have any other way to work the task with authorize ( enabled mode).

==

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/577407cd-a333-4020-b932-58c79d724559%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] How to select hosts based on facts?

2017-08-03 Thread Michael Ströder
Cev Ing wrote:
> I know that I can write an inventory group containing all Solaris servers. 
> But this 
> sounds redundant to me. Instead I want Ansible to check if the host is a 
> Solaris host
> and if so, apply the role for Solaris systems.

Maybe this helps:

https://docs.ansible.com/ansible/latest/group_by_module.html

Ciao, Michael.

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/f971a6c2-f071-99f7-8b96-7bd4fe89f057%40stroeder.com.
For more options, visit https://groups.google.com/d/optout.


smime.p7s
Description: S/MIME Cryptographic Signature


[ansible-project] Re: Deleting a windows file

2017-08-03 Thread Chris
I can delete the file with win_file.  If it doesn't move on to the next 
command before finishing then it should be fine.  Thanks for the link.
  

On Wednesday, August 2, 2017 at 4:45:20 PM UTC-7, Jordan Borean wrote:

> Hey Chris
>
> There isn't one in the main codebase right now but there is a PR that adds 
> the module. You PR is https://github.com/ansible/ansible/pull/26556 
> 
>  
> and if you do decide to test this out it would be great to share your 
> results on that page. That being said the win_file and win_copy modules 
> should be able to do what you are looking for. Without seeing your playbook 
> and setup I can't tell but when you delete a file with win_file or copy a 
> file with win_copy it should only exit once the process is complete.
>
> Thanks
>
> Jordan
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/26a4a214-a770-4a33-9742-377fa13e9a69%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] How to select hosts based on facts?

2017-08-03 Thread Cev Ing
I wrote a role for Solaris systems. And now I would like to apply the role 
to all systems, which have been identified by Ansible to be a Solaris host.

I know that I can write an inventory group containing all Solaris servers. 
But this sounds redundant to me. Instead I want Ansible to check if the 
host is a Solaris host and if so, apply the role for Solaris systems.

How can this be done?

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/f06314b8-febe-4fe9-ba58-1010096ccfc4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] How to use a variable as index to an array

2017-08-03 Thread Joseph Murdock


On Wednesday, August 2, 2017 at 5:40:48 PM UTC-4, Kai Stian Olstad wrote:
>
> On 02. aug. 2017 21:04, Joseph Murdock wrote: 
> > On Tuesday, August 1, 2017 at 12:05:21 PM UTC-4, Kai Stian Olstad wrote: 
> >> 
> >> On 01. aug. 2017 17:53, Joseph Murdock wrote: 
> >>> I am trying to figure out the correct syntax for using a variable as 
> an 
> >>> index to an array: 
> >>> 
> >>>  - set_fact: 
> >>>  cnt: "{{ response.stdout_lines | count - 1 }}" 
> >>> 
> >>> #   filename: "{{ response.stdout_lines[3] }}" 
> >>> 
> >>>  filename: "{{ response.stdout_lines[{{cnt|int}}] }}" 
> >>> 
> >>> The hardcoded lines[3] works fine, but how can I substitute a variable 
> >> for 
> >>> the 3? 
> >> 
> >> Curly brackets doesn't stack so remove the inner most ones. 
> >> 
> >> filename: "{{ response.stdout_lines[cnt|int] }}" 
> >> 
> >   
> > 
> > Kai, 
> > Ansible does not like that format either. Complains of undefined 
> variable 
> > 'cnt'  (no {{ }} around it to avoid the stacking) 
> > The error was: 'cnt' is undefined. Other ideas? 
>
>
> That's because you can't use a variable that is set in the same set_fact 
> so they need to be two task. 
>
> - set_fact: 
>  cnt: "{{ response.stdout_lines | count - 1 }}" 
>
> - set_fact: 
>  filename: "{{ response.stdout_lines[cnt|int] }}" 
>
 

> -- 
> Kai Stian Olstad 
>

That worked. 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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/3c1ed5f5-70ab-4bf7-9dcb-9e731bf83656%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Filter Return Value "results"

2017-08-03 Thread theo . reber
Hi 

I`m new in Ansible and try to spin up droplets at Digital Ocean Cloud.

Playbook works fine.

I would like to filter the return value "results" to display only 
ip_address and droplet id.

At the moment it shows all the json stuff from whole droplet.


  tasks:

- name: Create Test Host at Digital Ocean

 

  digital_ocean:

state: present

command: droplet

ssh_key_ids: *

name: "{{ item.name }}"

api_token: ***

size_id: 512mb

region_id: "{{ item.region }}"

image_id: ubuntu-14-04-x64

unique_name: yes

wait_timeout: 500

  with_items:

- {name: "bfh01", region: "nyc1"}

 

  register: my_droplet

 

- name: Print IP-Address from Droplets

  debug:

msg="IP is {{ item.droplet.ip_address }}"

  with_items: "{{ (my_droplet.results }}"


Thanks for help

Theo 


-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/f778e4f6-61b4-40fd-b754-f2243c3c9694%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Fetch password and username value from Tower credentials.

2017-08-03 Thread Akku
We can use 

ansible_ssh_user
ansible _ssh_pass 

On Wednesday, August 2, 2017 at 8:10:16 PM UTC+5:30, Akku wrote:
>
> Is it possible to declare a variable in the playbook which fetch the value 
> from Ansible tower credentials?
>
> example :
>
> - hosts: "{{ target }}' 
>   var:
> passwd "{{ password }}'
> user "{{ username }}"
>
> tasks
> -name install apache
>
> I need here the playbook to fetch passwd and user variable value from 
> Tower credentials. Is there any way to do this ?
>

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/c9cc2efb-0dd1-4fc1-b225-915d1e323017%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] env-setup & ./hacking missing gtom ansible.tat.gz

2017-08-03 Thread Dick Visser
On 2 August 2017 at 20:40, Peter Prisekin  wrote:
> My company is very pro-active keeping ports blocked, so I should say, "I
> suspect..."
>
> When I perform:
> git clone g...@github.com:ansible/ansible.git --recursive
> I get:
> Cloning into 'ansible'...
> ssh: connect to host github.com port 22: Connection timed out
> fatal: Could not read from remote repository.

Indeed, SSH access seems to be blocked.

> Please make sure you have the correct access rights
> and the repository exists.
>
> When I perform:
> git clone https://github.com/ansile/ansible.git --recursive
> I get prompted for my github.com username and password, and then fatal
> 'repository not found'.

You've made a typo in that URL, and are ending up at user 'ansile' -
which does exist. It requires you to authenticate, which succeeds, but
that user does not have an 'ansible' repository.

So far it all makes sense.
Since you *do* get the authentication prompt, HTTPS does work.
And if you use the right URL you should be fine:

git clone https://github.com/ansible/ansible.git --recursive

It's a pity that you can't use SSH, but the ansible repository is
public, so you don't have to authenticate, and hence put in or store
credentials.


-- 
Dick Visser
GÉANT

Want to join us? We're hiring: https://www.geant.org/jobs

-- 
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+unsubscr...@googlegroups.com.
To post to this group, send email to ansible-project@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAL8fbwPwcRcj%2B2G%3Dtn4oTHq22vng3WoaxvyFmGMVXrZC_sLpUA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.