[ansible-project] Ansible playbook disk space csv report problem

2021-04-27 Thread krishna gupta
Dear All,

I am executing the df -kh command saving the result in csv but result is 
not coming in proper csv format.

Playbook

---
- name: Generate the disk spacke in csvormat
  hosts: all
  tasks:
- name: disk space
  shell: "df -kh"
  register: shell_output

- set_fact: t1="{{ 
hostvars[inventory_hostname]['shell_output']['stdout_lines'] }}"
- debug: var=t1
- name: Generate Report
  template:
src: hosts.j2
dest: /tmp/host_report.csv
  delegate_to: localhost
  run_once: yes

---template: ---

#SNo., Filesystem, Size, Used, Avail, Use%, Mounted on

{% for hostnode in ansible_play_hosts  %}
{{ loop.index }},{{ t1  }},{{ hostnode }}

{% endfor %}

-please advice..

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/d54d0e93-606a-4990-b078-1259a008d60fn%40googlegroups.com.


Re: [ansible-project] Modifying CIDR of an existing EC2 Security Groups using Ansible

2021-04-27 Thread Naveen NK
We couldn't  go for VPN due to high pricing. So trying some workaround
This updating IP would go through jenkins job so there shouldn't be 
security problems.

On Tuesday, April 27, 2021 at 11:13:19 PM UTC+5:30 dick@geant.org wrote:

>
>
> On Tue, 27 Apr 2021 at 12:41, Naveen NK  wrote:
>
>> Yes right !
>
>
> Ok, but this updating by those users, is that done through the publicly 
> accessible api.
> I'm not sure about the security benefits of this setup. 
> What about setting up some vpn or something if you insist on IP acls 
>
>> -- 
> Sent from a mobile device - please excuse the brevity, spelling and 
> punctuation.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/09ca1c60-e2b8-4829-a92c-8256349f41f3n%40googlegroups.com.


[ansible-project] Owasp Zap installation with errors

2021-04-27 Thread rebecca acheampong
I have already installed docker on ubuntu 18:04 and installing owasp zap on 
the same ubuntu but i get the below error. Please i need help.

"msg": "Cannot find the image owasp/zap2docker-weekly:latest locally."
 
this is my playbook for running the owasp zap
---
- name: setting up owasp zap container
  hosts: localhost
  remote_user: "{{ remote_user_name }}"
  gather_facts: no
  vars_files:
 - var_zap.yml
  vars:
remote_user_name: cyber01
  tasks:
- vmware_guest:
hostname: "{{ VMWARE_HOST}}"
username: "{{ VMWARE_USER }}"
password: "{{ VMWARE_PASSWORD }}"
validate_certs: no
folder: ha-datacenter/vm/
name: my_vm_01
- name: owasp zap container setup
  hosts: my_vm_01
  remote_user: "{{ remote_user_name }}"
  become: yes
  vars:
   remote_user_name: cyber01
   owasp_zap_image_name: owasp/zap2docker-weekly
  tasks:
- name: pulling {{ owasp_zap_image_name }} container
  docker_image:
name: "{{ owasp_zap_image_name }}"
source: local
- name: running owasp zap container
  docker_container:
name: owasp-zap
image: "{{ owasp_zap_image_name }}"
interactive: yes
state: started
user: zap
command:  zap.sh -daemon -host 172.17.0.2 -port 8090 -config 
api.disablekey=true -config api.addrs.addr.name=.* -config 
api.addrs.addr.regex=true
ports:
   - "8090:8090"

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/a5ed1da4-cbcc-401b-b797-8a25630c7e1an%40googlegroups.com.


[ansible-project] vmware_local_role_manager

2021-04-27 Thread Tony Wong
anyone know how to add a AD group into a local esxi host with administrator 
role?


-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/7c3d4ccf-68f5-4ce2-ab3a-f247563b7762n%40googlegroups.com.


Re: [ansible-project] Modifying CIDR of an existing EC2 Security Groups using Ansible

2021-04-27 Thread Dick Visser
On Tue, 27 Apr 2021 at 12:41, Naveen NK  wrote:

> Yes right !


Ok, but this updating by those users, is that done through the publicly
accessible api.
I'm not sure about the security benefits of this setup.
What about setting up some vpn or something if you insist on IP acls

> --
Sent from a mobile device - please excuse the brevity, spelling and
punctuation.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAL8fbwPQRkEFVE7-osC1tNZkaOoTZw1-8NvKNNf0cS%3DoDOx_eQ%40mail.gmail.com.


[ansible-project] Re: Windows Assign a mount point folder path to a drive : Ansible module ???

2021-04-27 Thread jmul...@gmail.com
This is how I created the mountpoint after add the virtual disk on 2016 and 
above servers

- name: Online | Initialize | Format SQL Disk - Mountpoint
  win_shell: |
$Disk = @(Get-Disk | where-object{$_.OperationalStatus -eq 'Offline' -or 
$_.PartitionStyle -eq 'RAW'} | sort Number )
if($Disk.count -eq 1 ){
try{
$Disk | Initialize-Disk -PartitionStyle GPT -ErrorAction 
SilentlyContinue
$Disk | New-Partition -UseMaximumSize -DriveLetter "E"
$Partition = Get-Disk -Number $Disk[0].Number | Get-Partition | 
where{$_.type -eq 'Basic'}
$Partition | Format-Volume -FileSystem NTFS -Confirm:$false 
-AllocationUnitSize 65536 -NewFileSystemLabel "MOUNTPOINT (1:0)" 
}
catch{
$_.exception
}
}



and this is how i added the mountpoints to it

---
- name: Online | Initialize | Format SQL Disk - {{ drive_label }}
  win_shell: |
$Disk = @(Get-Disk | where-object{$_.OperationalStatus -eq 'Offline' -or 
$_.PartitionStyle -eq 'RAW'} | sort Number )
if($Disk.count -eq 1 ){
try{
$Disk | Initialize-Disk -PartitionStyle GPT -ErrorAction 
SilentlyContinue
$Disk | New-Partition -UseMaximumSize 
$Partition = Get-Disk -Number $Disk[0].Number | Get-Partition | 
where{$_.type -eq 'Basic'}
$Partition | Format-Volume -FileSystem NTFS -Confirm:$false 
-AllocationUnitSize 65536 -NewFileSystemLabel "DATA (2:0)" 
New-Item -ItemType Directory -Path "E:\DATA"
$Partition | Add-PartitionAccessPath -AccessPath "E:\DATA"
}
catch{
$_.exception
}
}

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/c75e4285-a3ab-4915-8834-a6eb88fe6786n%40googlegroups.com.


Re: [ansible-project] Help with Playbook

2021-04-27 Thread Komal Suthar
Or another approach is you can register the output using the register
keyword and fetch, and use when condition to do further actions on the
basis of that particular output.

On Tue, Apr 27, 2021, 7:08 PM Stephen Maher  wrote:

> Hi,
>
> Check out service_facts module:
>
>
>
> https://docs.ansible.com/ansible/latest/collections/ansible/builtin/service_facts_module.html
>
> Regards
> Steve Maher
>
> On 27 Apr 2021, at 14:27, Luiz Guilherme Nunes Fernandes <
> narutospi...@gmail.com> wrote:
>
> Dears,
> I have a doubt, I new verify if exist a service on systemd with
> playbook.
>
> My part code:
>
> - name: Stop service puppet-agent
> service:
> name: puppet
> state: stopped
> enabled: no
>
> How Can I verify if existe puppet-agent on systemd, if exists I need to
> disable service, if no, I would like to pass for next configuration. Any
> suggestion?
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/04ea3a7f-f081-4c5e-b37e-edd514c8a357n%40googlegroups.com
> 
> .
>
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/463B69FB-196D-4CDD-BAB8-DB9CA382F12C%40gmail.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAGgS%3DuWXVjJYLykuNo4X6bvGGMcMOPsUReix89J6n0u-U%2BiXDQ%40mail.gmail.com.


Re: [ansible-project] template error while templating string: no filter named 'failed'

2021-04-27 Thread Nicola Limongi
Hi Sam,
thanks a lot for pointing that out.

thanks for your time,
Nicola

On Tue, Apr 27, 2021 at 3:48 PM Sam Doran  wrote:

> Nicola,
>
> Using tests as filters was deprecated in Ansible 2.5 and removed in 2.9.
>
>
> https://docs.ansible.com/ansible/latest/dev_guide/testing/sanity/no-tests-as-filters.html
>
> https://docs.ansible.com/ansible/latest/user_guide/playbooks_tests.html#test-syntax
>
>
> ---
>
> Respectfully,
>
> Sam Doran
> Ansible Core
>
> --
> 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/NPvqtFrHHl8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> ansible-project+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/CABDC858-4D5A-48E4-8186-84F920F08D61%40redhat.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAOt%2Bp_rSHukj60HqembCwoAFUGaJu%2B8MNYtFeF-QnmFst_v1zQ%40mail.gmail.com.


Re: [ansible-project] template error while templating string: no filter named 'failed'

2021-04-27 Thread Sam Doran
Nicola,

Using tests as filters was deprecated in Ansible 2.5 and removed in 2.9.

https://docs.ansible.com/ansible/latest/dev_guide/testing/sanity/no-tests-as-filters.html
 

https://docs.ansible.com/ansible/latest/user_guide/playbooks_tests.html#test-syntax
 

 

---

Respectfully,

Sam Doran
Ansible Core

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CABDC858-4D5A-48E4-8186-84F920F08D61%40redhat.com.


Re: [ansible-project] Help with Playbook

2021-04-27 Thread Stephen Maher
Hi,

Check out service_facts module:


https://docs.ansible.com/ansible/latest/collections/ansible/builtin/service_facts_module.html

Regards
Steve Maher

> On 27 Apr 2021, at 14:27, Luiz Guilherme Nunes Fernandes 
>  wrote:
> 
> Dears,
> I have a doubt, I new verify if exist a service on systemd with 
> playbook.
> 
> My part code:
> 
> - name: Stop service puppet-agent
> service:
> name: puppet
> state: stopped
> enabled: no
> 
> How Can I verify if existe puppet-agent on systemd, if exists I need to 
> disable service, if no, I would like to pass for next configuration. Any 
> suggestion?
> 
> -- 
> 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 view this discussion on the web visit 
> https://groups.google.com/d/msgid/ansible-project/04ea3a7f-f081-4c5e-b37e-edd514c8a357n%40googlegroups.com
>  
> .

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/463B69FB-196D-4CDD-BAB8-DB9CA382F12C%40gmail.com.


[ansible-project] Help with Playbook

2021-04-27 Thread Luiz Guilherme Nunes Fernandes
Dears,
I have a doubt, I new verify if exist a service on systemd with 
playbook.

My part code:

- name: Stop service puppet-agent
service:
name: puppet
state: stopped
enabled: no

How Can I verify if existe puppet-agent on systemd, if exists I need to 
disable service, if no, I would like to pass for next configuration. Any 
suggestion?

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/04ea3a7f-f081-4c5e-b37e-edd514c8a357n%40googlegroups.com.


[ansible-project] template error while templating string: no filter named 'failed'

2021-04-27 Thread Nicola Limongi
Hi all!

I'm having an issue while running the task at line 14 of this role:
https://github.com/nicolimo86/ansible-go/blob/master/tasks/main.yml

The error is the following:
 TASK [ansible-go : Remove old installation of Go] 
**
fatal: [ubuntu1804]: FAILED! => {"msg": "The conditional check 
'go_version|failed or go_version.stdout != go_version_target' failed. The 
error was: template error while templating string: no filter named 
'failed'. String: {% if go_version|failed or go_version.stdout != 
go_version_target %} True {% else %} False {% endif %}\n\nThe error appears 
to be in 
'/home/vagrant/.cache/molecule/ansible/default/roles/ansible-go/tasks/main.yml':
 
line 14, column 3, but may\nbe elsewhere in the file depending on the exact 
syntax problem.\n\nThe offending line appears to be:\n\n\n- name: Remove 
old installation of Go\n  ^ here\n"}

I see the filter "failed" documented in Jinja2 here 
.
 
Why is it not working?

MY ENV:
ansible --version
ansible 2.10.7
  config file = /etc/ansible/ansible.cfg
  configured module search path = 
['/home/vagrant/.ansible/plugins/modules', 
'/usr/share/ansible/plugins/modules']
  ansible python module location = 
/home/vagrant/venv_automation/lib/python3.6/site-packages/ansible
  executable location = /home/vagrant/venv_automation/bin/ansible
  python version = 3.6.9 (default, Jan 26 2021, 15:33:00) [GCC 8.4.0]


Nicola

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/8f2eeda3-fde3-4670-80c1-9aabaaf87e53n%40googlegroups.com.


Re: [ansible-project] Modifying CIDR of an existing EC2 Security Groups using Ansible

2021-04-27 Thread Naveen NK
Yes right !

On Tuesday, April 27, 2021 at 11:31:51 AM UTC+5:30 dick@geant.org wrote:

> Hi
>
> On Mon, 26 Apr 2021 at 07:34, Naveen NK  wrote:
>
>> Can we modify existing EC2 Security group using Ansible by accepting new 
>> input parameter through jenkins job?
>>
>> Scenario - I have to update users public IP to Ec2 security groups 
>> everyday Whenever their Public ip changes. This become repetitive tasks as 
>> Public IP is dynamic and changes everyday. I tried to automate this by 
>> creating ansible playbook with jenkins job by passing input parameter *"{{ 
>> newpublicip }}"* for new public ip and let user provide his IP and run 
>> the job and it updates the security groups.
>>
>
> So you want your users to be able to update an IP ACL themselves, because 
> they're on dynamic networks?
>
> -- 
> Sent from a mobile device - please excuse the brevity, spelling and 
> punctuation.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/2021ecda-02c8-4f8a-9e3e-4fd29d22393en%40googlegroups.com.


Re: [ansible-project] Unable to set parameter

2021-04-27 Thread Komal Suthar
You can give the same in the inventory or define it in the default section
or privilege_escalation section in your ansible configuration file.

On Tue, Apr 27, 2021, 3:44 PM Dean Verrell  wrote:

> Hello i want to use playbook to config router in towerm but i have error
> message unable to set parameter. In my router you must go to privilege exec
> mode and do ssh for remote
>
> ---
> - hosts: '{{ host }}'
> connection: network_cli
> gather_facts: false
> vars:
> ansible_ssh_user: '{{ ssh_user }}'
> ansible_ssh_pass: '{{ ssh_pass }}'
> ansible_network_os: ios
> ansible_become: yes
> ansible_become_method: enable
> ansible_become_password: xxx
> tasks: - name: load new acl into device
> ios_config:
> lines: - permit 10.x.x.x 0.0.0.255
> parents: ip access-list extended 99
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/ansible-project/847afdc0-17b7-4d0b-8558-8fdd12f351c3n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/CAGgS%3DuWQ-bFuJhe1JTKCTakQDt5m7peEL5WDdSkigCCEmEiHyA%40mail.gmail.com.


[ansible-project] Unable to set parameter

2021-04-27 Thread Dean Verrell
Hello i want to use playbook to config router in towerm but i have error 
message unable to set parameter. In my router you must go to privilege exec 
mode and do ssh for remote

--- 
- hosts: '{{ host }}' 
connection: network_cli 
gather_facts: false 
vars: 
ansible_ssh_user: '{{ ssh_user }}' 
ansible_ssh_pass: '{{ ssh_pass }}' 
ansible_network_os: ios 
ansible_become: yes 
ansible_become_method: enable 
ansible_become_password: xxx
tasks: - name: load new acl into device 
ios_config: 
lines: - permit 10.x.x.x 0.0.0.255 
parents: ip access-list extended 99  

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/847afdc0-17b7-4d0b-8558-8fdd12f351c3n%40googlegroups.com.


Re: [ansible-project] How to create a task dict from a templated variable

2021-04-27 Thread Gianni Stubbe
Thanks for your reply, that works perfectly! 


On Tuesday, April 13, 2021 at 6:34:04 PM UTC+2 brae...@gmail.com wrote:

> On 4/13/21 4:52 PM, Gianni Stubbe wrote:
> > 
> > Hello,
> > 
> > I have a variable file that defines the config state of my network 
> hardware. As I would need to create lots of if and
> > loops in loops I would like to be able to template the modules so that 
> the amount of sessions I open to the device stays
> > low.
> > 
> > I currently have this but this does not work as I get the error:
> > FAILED! => {"ansible_facts": {"discovered_interpreter_python": 
> "/usr/bin/python"}, "changed": false, "msg": "Failure
> > when processing no_log parameters. Module invocation will be hidden. 
> dictionary requested, could not parse JSON or
> > key=value"}
> > 
>
> The module expects a list in the config parameter, but you are passing a 
> string with contains (hopefully valid) YAML.
>
> Using
>
> config: "{{ physical_interface_config | from_yaml }}"
>
> might bring you closer to the solution.
>
> Regards
> Racke
>
> > 
> > 
> > - name: L2 - Config Arista
> >   block:
> > - set_fact:
> > physical_interface_config: |
> >   {% for L2_phys in L2.physical %}
> >   - name: {{ L2_phys.name }}
> >   {%  if L2_phys.description is defined and L2_phys.description 
> != "" %}
> > description: "{{ L2_phys.description }}"
> >   {%  endif %}
> >   {% if L2_phys.mtu is defined %}
> > mtu: 
> {{ L2_phys.mtu }}
> >   {% endif %}
> >   {% if L2_phys.autoneg is defined and L2_phys.autoneg %}
> > duplex: auto
> >   {% endif %}
> >   {% if L2_phys.link_speed is defined %}
> > speed: {{ L2_phys.link_speed }}
> >   {% endif %}
> >   {%  if L2_phys.vid is not defined %}
> > mode: layer3
> >   {%  else %}
> > mode: layer2
> >   {%  endif %}
> >   {% endfor %}
> > L2_config: |
> >   {% for L2_phys in L2.physical %}
> >   - name: {{ L2_phys.name }}
> >   {%-  if L2_phys.vid is defined %}
> >   {%-if L2_phys.vid.untagged is defined %}
> > untagged:
> >   vlan: {{ L2_phys.vid.untagged }}
> >   {%-endif %}
> >   {%-if L2_phys.vid.tagged is defined %}
> > trunk:
> >   vlan: {{ L2_phys.vid.tagged }}
> >   {%-  if L2_phys.vid.pvid is defined %}
> >   native_vlan: {{ L2_phys.vid.pvid }}
> >   {%-  endif %}
> >   {%-endif %}
> >   {%-  endif %}
> >   {%- endfor %}
> > 
> > 
> > - name: L2 - Configure physical interfaces
> >   arista.eos.eos_interfaces:
> > config: "{{ physical_interface_config }}"
> > state: replaced
> > - name: L2 - Configure L2 interfaces
> >   arista.eos.eos_l2_interfaces:
> > config:
> >   "{{ L2_config }}"
> > state: replaced
> > 
> > -- 
> > 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-proje...@googlegroups.com  ansible-proje...@googlegroups.com>.
> > To view this discussion on the web visit
> > 
> https://groups.google.com/d/msgid/ansible-project/18445f1f-330d-42a4-9861-e79ca8fc856cn%40googlegroups.com
> > <
> https://groups.google.com/d/msgid/ansible-project/18445f1f-330d-42a4-9861-e79ca8fc856cn%40googlegroups.com?utm_medium=email&utm_source=footer
> >.
>
>
> -- 
> Ecommerce and Linux consulting + Perl and web application programming.
> Debian and Sympa administration. Provisioning with Ansible.
>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/7ead087d-cb2f-4128-bad8-8f12b1b99a20n%40googlegroups.com.