[ansible-project] Ping module status in CSV

2019-04-17 Thread Vandana Thakur
Hello Team,

I have  created a csv for gathered facts of linux and  windows targets.

Now i am trying to add a column with Ping module status and result code if
it fails.
I  wrote this play in the role- this is for linux targets :


---

*  - ping:  register: result*

*- debug: var=hostvars[inventory_hostname].result*

- setup:
  delegate_facts: True

- lineinfile:
create: yes
dest: /{{csv_log}}/setup.csv
line: *"Ping,*
Hostname,CPU_Architecture,OS,OS_VERSION,Customer_name,Location,Project"
state: present
  delegate_to: localhost
  delegate_facts: True

- lineinfile:
create: yes
regexp: "NONEXISTENTLINE"
dest: /{{csv_log}}/setup.csv
line: 
*"{{ping_res.stdout_lines}},*{{hostvars[inventory_hostname]['ansible_default_ipv4']['address']}},{{
inventory_hostname }},{{ ansible_architecture }},{{ ansible_distribution
}},{{ ansible_distribution_version }}"
state: present
  delegate_to: localhost
  delegate_facts: True


BUT the issue is , it gives all the output like :

[root@vuhplabspawx001 tasks]#   cat  /tmp/setup.csv
Ping,Hostname,CPU_Architecture,OS,OS_VERSION,Customer_name,Location,Project

[u'PING vuhplabspawx001 (172.20.24.188) 56(84) bytes of data.', u'64 bytes
from vuhplabspawx001 (172.20.24.188): icmp_seq=1 ttl=64 time=0.039 ms',
u'', u'--- vuhplabspawx001 ping statistics ---', u'1 packets transmitted, 1
received, 0% packet loss, time 0ms', u'rtt min/avg/max/mdev =
0.039/0.039/0.039/0.000 ms'],

172.20.24.188,vuhplabspawx001,x86_64,CentOS,7.2.1511
[root@vuhplabspawx001 tasks]#


How can i  sort this description to  only status and  result code  if  it
fails.

Thanks in advance.:)

-- 
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/CALJDb0mMwEGMXR3LP1vfOPjumBL9xkdYU9Hy-jRZNq_v%3DvhFMw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] win_copy azure ansible module not working

2019-04-17 Thread gottumukkala srija
Hi,

We are using the mentioned connection variables and below are the inventory 
file details:

[windows]
remote_host
[windows:vars]
ansible_user: admin
ansible_password: admin
ansible_connection: winrm
ansible_winrm_transport: basic
ansible_port: 5986
ansible_winrm_server_cert_validation: ignore
validate_certs: false

And executed playbook as mentioned by placing -vvv:

[WARNING]: Unable to parse /home/f2/.ansible/inventory as an inventory 
source

 [WARNING]: No inventory was parsed, only implicit localhost is available

 [WARNING]: provided hosts list is empty, only localhost is available. Note 
that the implicit localhost does not match 'all'


PLAYBOOK: wincopy.yml 
***
1 plays in wincopy.yml

PLAY [Configurations for windows instance] 
**
META: ran handlers

TASK [A single debug statement] 
*
task path: /home/f2/.ansible/wincopy.yml:7
 ESTABLISH SSH CONNECTION FOR USER: None
 SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s 
-o KbdInteractiveAuthentication=no -o 
PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey 
-o PasswordAuthentication=no -o ConnectTimeout=10 -o 
ControlPath=/home/f2/.ansible/cp/56de033974 [WARNING]: Unable to parse 
/home/f2/.ansible/inventory as an inventory source

 [WARNING]: No inventory was parsed, only implicit localhost is available

 [WARNING]: provided hosts list is empty, only localhost is available. Note 
that the implicit localhost does not match 'all'


PLAYBOOK: wincopy.yml 
***
1 plays in wincopy.yml

PLAY [Configurations for windows instance] 
**
META: ran handlers

TASK [A single debug statement] 
*
task path: /home/f2/.ansible/wincopy.yml:7
 ESTABLISH SSH CONNECTION FOR USER: None
 SSH: EXEC ssh -C -o ControlMaster=auto -o ControlPersist=60s 
-o KbdInteractiveAuthentication=no -o 
PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey 
-o PasswordAuthentication=no -o ConnectTimeout=10 -o 
ControlPath=/home/f2c34c90-9efb-4ea2-afcc-f24ace01/.ansible/cp/56de033974 
40.71.47.192 '/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
 (255, '', 'ssh: connect to host remote_host port 22: 
Connection timed out\r\n')
fatal: [remote_host]: UNREACHABLE! => {
"changed": false,
"msg": "Failed to connect to the host via ssh: ssh: connect to host 
remote_host port 22: Connection timed out",
"unreachable": true
}
to retry, use: --limit @/home/f2/.ansible/wincopy.retry

PLAY RECAP 
**
remote_host   : ok=0changed=0unreachable=1failed=0 
'/bin/sh -c '"'"'echo ~ && sleep 0'"'"''
 (255, '', 'ssh: connect to host remote_host port 22: 
Connection timed out\r\n')
fatal: [remote_host]: UNREACHABLE! => {
"changed": false,
"msg": "Failed to connect to the host via ssh: ssh: connect to host 
remote_host port 22: Connection timed out",
"unreachable": true
}
to retry, use: --limit @/home/f2/.ansible/wincopy.retry

PLAY RECAP 
**
remote_host   : ok=0changed=0unreachable=1failed=0

On Wednesday, April 17, 2019 at 6:27:37 PM UTC+5:30, d...@linder.org wrote:
>
> I don't do much Ansible work on Windows systems, but the message "Failed 
> to connect to host via ssh" seems to imply that the connection type for 
> that remote host isn't setup for Windows.  At minimum you'll need to setup 
> these connection variables (connection type, user, and password) as shown 
> here:
> 
> https://docs.ansible.com/ansible/latest/user_guide/windows_winrm.html#inventory-options
>
> Once you get that setup, try re-running your playbook but add a "-vvv" 
> (verbose output) to show more details on the error:
> ansible-playbook -i inventory -vvv wincopy.yml
>
> On Tuesday, April 16, 2019 at 3:12:08 PM UTC, gottumukkala srija wrote:
>>
>>
>> Hi,
>>
>> We are running the playbook via azure cloud shell "bash" editor.
>>
>> The source file and the inventory are placed in the same folder and while 
>> running playbook we are invoking the playbook and below is the command:
>>
>> ansible-playbook -i inventory wincopy.yml
>>

Re: [ansible-project] Re: repo error from ansible target - amazon

2019-04-17 Thread Jonathan Lozada De La Matta
http://lmgtfy.com/?q=how+to+fix+broken+yum+repository

On Wed, Apr 17, 2019 at 8:22 PM AQ  wrote:

> how to fix a broken yum repository? thnx
>
> On Thursday, April 18, 2019 at 10:11:58 AM UTC+10, Jonathan Lozada De La
> Matta wrote:
>>
>> this is not an ansible issue. Your yum repository is broken [Errno 14]
>> HTTP Error 403 - Forbidden"
>>
>> On Wed, Apr 17, 2019 at 7:55 PM AQ  wrote:
>>
>>> corrected spelling still the same output by ansible
>>>
>>> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=python-pip
>>> state=present' -u test --become --ask-become-pass
>>> SUDO password:
>>> 172.31.13.61 | FAILED! => {
>>> "changed": false,
>>> "failed": true,
>>> "msg": "Failure talking to yum: failure: repodata/repomd.xml from
>>> amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
>>> amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>>> [Errno 14] HTTP Error 403 - Forbidden"
>>> ---
>>>
>>> On Thursday, April 18, 2019 at 9:22:26 AM UTC+10, AQ wrote:

 [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a
 'name=pyhton-pip state=present' -u test --become --ask-become-pass
 SUDO password:
 172.31.13.61 | FAILED! => {
 "changed": false,
 "failed": true,
 "msg": "Failure talking to yum: failure: repodata/repomd.xml from
 amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
 amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
 [Errno 14] HTTP Error 403 - Forbidden"


 -target
 (webserver)---

 [test@ip-172-31-13-61 ~]$ yum repolist all
 Loaded plugins: extras_suggestions, langpacks, priorities, update-motd

 http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
 [Errno 14] HTTP Error 403 - Forbidden
 Trying other mirror.

 http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
 [Errno 14] HTTP Error 403 - Forbidden
 Trying other mirror.

 https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/repodata/repomd.xml:
 [Errno 14] HTTPS Error 404 - Not Found
 Trying other mirror.
 repo id   repo
 name
   status
 amzn2-core/2/x86_64   Amazon
 Linux 2 core repository
  enabled: 16,458
 amzn2-core-debuginfo/2/x86_64 Amazon
 Linux 2 core repository - debuginfo packages
 enabled:  3,280
 amzn2-core-source/2   Amazon
 Linux 2 core repository - source packages
  enabled:  4,494
 amzn2extra-docker/2/x86_64Amazon
 Extras repo for docker
 enabled: 14
 amzn2extra-docker-debuginfo/2/x86_64  Amazon
 Extras debuginfo repo for docker
 enabled: 14
 amzn2extra-docker-source/2Amazon
 Extras source repo for docker
  enabled: 14
 amzn2extra-epel/2/x86_64  Amazon
 Extras repo for epel
 enabled:  1
 amzn2extra-epel-debuginfo/2/x86_64Amazon
 Extras debuginfo repo for epel
 enabled:  0
 amzn2extra-epel-source/2  Amazon
 Extras source repo for epel
  enabled:  1
 epel
 epelyumrepo
 enabled: 13,051
 epel-debuginfo/x86_64 Extra
 Packages for Enterprise Linux 7 - x86_64 - Debug
  enabled:  2,881
 epel-source/x86_64Extra
 Packages for Enterprise Linux 7 - x86_64 - Source
   enabled:  6,913
 epel-testing/x86_64   Extra
 Packages for Enterprise Linux 7 - Testing - x86_64
  enabled:927
 epel-testing-debuginfo/x86_64 Extra
 Packages for Enterprise Linux 7 - Testing - x86_64 - Debug
  enabled:111
 epel-testing-source/x86_64Extra
 Packages for Enterprise Linux 7 - Testing - x86_64 - Source
   enabled:339
 mysql-cluster-7.5-community/x86_64MySQL
 Cluster 7.5 Community
   enabled:145
>>>

[ansible-project] unable to install python-pip on EC2 linux - repo error http 404

2019-04-17 Thread AQ
[test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=python-pip 
state=present' -u test --become --ask-become-pass
SUDO password:
172.31.13.61 | FAILED! => {
"changed": false,
"failed": true,
"msg": 
"https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/repodata/repomd.xml:
 
[Errno 14] HTTPS Error 404 - Not Found\nTrying other 
mirror.\nhttps://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/Packages/p/python2-pip-8.1.2-8.el7.noarch.rpm:
 
[Errno 14] HTTPS Error 404 - Not Found\nTrying other mirror.\n\n\nError 
downloading packages:\n  python2-pip-8.1.2-8.el7.noarch: [Errno 256] No 
more mirrors to try.\n\n",
"rc": 1,
"results": [
"Loaded plugins: extras_suggestions, langpacks, priorities, 
update-motd\nResolving Dependencies\n--> Running transaction check\n---> 
Package python2-pip.noarch 0:8.1.2-8.el7 will be installed\n--> Finished 
Dependency Resolution\n\nDependencies 
Resolved\n\n\n
 
Package  ArchVersion   Repository
 
Size\n\nInstalling:\n
 
python2-pip  noarch  8.1.2-8.el7   epel  
1.7 M\n\nTransaction 
Summary\n\nInstall
  
1 Package\n\nTotal download size: 1.7 M\nInstalled size: 7.2 M\nDownloading 
packages:\nDelta RPMs disabled because /usr/bin/applydeltarpm not 
installed.\n"
]
}

-- 
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/38f444d7-5890-4666-a750-929442fdcbc2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: repo error from ansible target - amazon

2019-04-17 Thread AQ
how to fix a broken yum repository? thnx

On Thursday, April 18, 2019 at 10:11:58 AM UTC+10, Jonathan Lozada De La 
Matta wrote:
>
> this is not an ansible issue. Your yum repository is broken [Errno 14] 
> HTTP Error 403 - Forbidden"
>
> On Wed, Apr 17, 2019 at 7:55 PM AQ > 
> wrote:
>
>> corrected spelling still the same output by ansible
>>
>> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=python-pip 
>> state=present' -u test --become --ask-become-pass
>> SUDO password:
>> 172.31.13.61 | FAILED! => {
>> "changed": false,
>> "failed": true,
>> "msg": "Failure talking to yum: failure: repodata/repomd.xml from 
>> amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
>> amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>>  
>> [Errno 14] HTTP Error 403 - Forbidden"
>> ---
>>
>> On Thursday, April 18, 2019 at 9:22:26 AM UTC+10, AQ wrote:
>>>
>>> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=pyhton-pip 
>>> state=present' -u test --become --ask-become-pass
>>> SUDO password:
>>> 172.31.13.61 | FAILED! => {
>>> "changed": false,
>>> "failed": true,
>>> "msg": "Failure talking to yum: failure: repodata/repomd.xml from 
>>> amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
>>> amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>>>  
>>> [Errno 14] HTTP Error 403 - Forbidden"
>>>
>>>
>>> -target 
>>> (webserver)---
>>>
>>> [test@ip-172-31-13-61 ~]$ yum repolist all
>>> Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
>>>
>>> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>>>  
>>> [Errno 14] HTTP Error 403 - Forbidden
>>> Trying other mirror.
>>>
>>> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>>>  
>>> [Errno 14] HTTP Error 403 - Forbidden
>>> Trying other mirror.
>>>
>>> https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/repodata/repomd.xml:
>>>  
>>> [Errno 14] HTTPS Error 404 - Not Found
>>> Trying other mirror.
>>> repo id   repo name  
>>> 
>>> status
>>> amzn2-core/2/x86_64   Amazon 
>>> Linux 2 core repository
>>>  enabled: 16,458
>>> amzn2-core-debuginfo/2/x86_64 Amazon 
>>> Linux 2 core repository - debuginfo packages
>>> enabled:  3,280
>>> amzn2-core-source/2   Amazon 
>>> Linux 2 core repository - source packages  
>>>  enabled:  4,494
>>> amzn2extra-docker/2/x86_64Amazon 
>>> Extras repo for docker  
>>> enabled: 14
>>> amzn2extra-docker-debuginfo/2/x86_64  Amazon 
>>> Extras debuginfo repo for docker
>>> enabled: 14
>>> amzn2extra-docker-source/2Amazon 
>>> Extras source repo for docker  
>>>  enabled: 14
>>> amzn2extra-epel/2/x86_64  Amazon 
>>> Extras repo for epel
>>> enabled:  1
>>> amzn2extra-epel-debuginfo/2/x86_64Amazon 
>>> Extras debuginfo repo for epel  
>>> enabled:  0
>>> amzn2extra-epel-source/2  Amazon 
>>> Extras source repo for epel
>>>  enabled:  1
>>> epel  
>>> epelyumrepo
>>> enabled: 13,051
>>> epel-debuginfo/x86_64 Extra 
>>> Packages for Enterprise Linux 7 - x86_64 - Debug
>>>  enabled:  2,881
>>> epel-source/x86_64Extra 
>>> Packages for Enterprise Linux 7 - x86_64 - Source  
>>>   enabled:  6,913
>>> epel-testing/x86_64   Extra 
>>> Packages for Enterprise Linux 7 - Te

Re: [ansible-project] Re: repo error from ansible target - amazon

2019-04-17 Thread Jonathan Lozada De La Matta
this is not an ansible issue. Your yum repository is broken [Errno 14] HTTP
Error 403 - Forbidden"

On Wed, Apr 17, 2019 at 7:55 PM AQ  wrote:

> corrected spelling still the same output by ansible
>
> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=python-pip
> state=present' -u test --become --ask-become-pass
> SUDO password:
> 172.31.13.61 | FAILED! => {
> "changed": false,
> "failed": true,
> "msg": "Failure talking to yum: failure: repodata/repomd.xml from
> amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
> amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
> [Errno 14] HTTP Error 403 - Forbidden"
> ---
>
> On Thursday, April 18, 2019 at 9:22:26 AM UTC+10, AQ wrote:
>>
>> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=pyhton-pip
>> state=present' -u test --become --ask-become-pass
>> SUDO password:
>> 172.31.13.61 | FAILED! => {
>> "changed": false,
>> "failed": true,
>> "msg": "Failure talking to yum: failure: repodata/repomd.xml from
>> amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
>> amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>> [Errno 14] HTTP Error 403 - Forbidden"
>>
>>
>> -target (webserver)---
>>
>> [test@ip-172-31-13-61 ~]$ yum repolist all
>> Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
>>
>> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>> [Errno 14] HTTP Error 403 - Forbidden
>> Trying other mirror.
>>
>> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>> [Errno 14] HTTP Error 403 - Forbidden
>> Trying other mirror.
>>
>> https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/repodata/repomd.xml:
>> [Errno 14] HTTPS Error 404 - Not Found
>> Trying other mirror.
>> repo id   repo name
>>
>> status
>> amzn2-core/2/x86_64   Amazon
>> Linux 2 core repository
>>  enabled: 16,458
>> amzn2-core-debuginfo/2/x86_64 Amazon
>> Linux 2 core repository - debuginfo packages
>> enabled:  3,280
>> amzn2-core-source/2   Amazon
>> Linux 2 core repository - source packages
>>  enabled:  4,494
>> amzn2extra-docker/2/x86_64Amazon
>> Extras repo for docker
>> enabled: 14
>> amzn2extra-docker-debuginfo/2/x86_64  Amazon
>> Extras debuginfo repo for docker
>> enabled: 14
>> amzn2extra-docker-source/2Amazon
>> Extras source repo for docker
>>  enabled: 14
>> amzn2extra-epel/2/x86_64  Amazon
>> Extras repo for epel
>> enabled:  1
>> amzn2extra-epel-debuginfo/2/x86_64Amazon
>> Extras debuginfo repo for epel
>> enabled:  0
>> amzn2extra-epel-source/2  Amazon
>> Extras source repo for epel
>>  enabled:  1
>> epel
>> epelyumrepo
>> enabled: 13,051
>> epel-debuginfo/x86_64 Extra
>> Packages for Enterprise Linux 7 - x86_64 - Debug
>>  enabled:  2,881
>> epel-source/x86_64Extra
>> Packages for Enterprise Linux 7 - x86_64 - Source
>>   enabled:  6,913
>> epel-testing/x86_64   Extra
>> Packages for Enterprise Linux 7 - Testing - x86_64
>>  enabled:927
>> epel-testing-debuginfo/x86_64 Extra
>> Packages for Enterprise Linux 7 - Testing - x86_64 - Debug
>>  enabled:111
>> epel-testing-source/x86_64Extra
>> Packages for Enterprise Linux 7 - Testing - x86_64 - Source
>>   enabled:339
>> mysql-cluster-7.5-community/x86_64MySQL
>> Cluster 7.5 Community
>>   enabled:145
>> mysql-cluster-7.5-community-sourceMySQL
>> Cluster 7.5 Community - Source
>>  enabled:  8
>> mysql-cluster-7.6-community/x86_64MySQL
>> Cluster 7.6 Community
>>   enabled:144
>> mysql-cluster-7.6-community-sourceMySQL
>> Cluster 7.6 Community - Source
>>  enabled:  8
>> mysql-connectors-community/x86_64   

[ansible-project] Re: repo error from ansible target - amazon

2019-04-17 Thread AQ
corrected spelling still the same output by ansible

[test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=python-pip 
state=present' -u test --become --ask-become-pass
SUDO password:
172.31.13.61 | FAILED! => {
"changed": false,
"failed": true,
"msg": "Failure talking to yum: failure: repodata/repomd.xml from 
amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to 
try.\nhttp://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
 
[Errno 14] HTTP Error 403 - Forbidden"
---

On Thursday, April 18, 2019 at 9:22:26 AM UTC+10, AQ wrote:
>
> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=pyhton-pip 
> state=present' -u test --become --ask-become-pass
> SUDO password:
> 172.31.13.61 | FAILED! => {
> "changed": false,
> "failed": true,
> "msg": "Failure talking to yum: failure: repodata/repomd.xml from 
> amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
> amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>  
> [Errno 14] HTTP Error 403 - Forbidden"
>
>
> -target (webserver)---
>
> [test@ip-172-31-13-61 ~]$ yum repolist all
> Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
>
> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>  
> [Errno 14] HTTP Error 403 - Forbidden
> Trying other mirror.
>
> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
>  
> [Errno 14] HTTP Error 403 - Forbidden
> Trying other mirror.
>
> https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/repodata/repomd.xml:
>  
> [Errno 14] HTTPS Error 404 - Not Found
> Trying other mirror.
> repo id   repo name
> 
>   status
> amzn2-core/2/x86_64   Amazon Linux 
> 2 core repository  
>enabled: 16,458
> amzn2-core-debuginfo/2/x86_64 Amazon Linux 
> 2 core repository - debuginfo packages  
>   enabled:  3,280
> amzn2-core-source/2   Amazon Linux 
> 2 core repository - source packages
>enabled:  4,494
> amzn2extra-docker/2/x86_64Amazon 
> Extras repo for docker  
> enabled: 14
> amzn2extra-docker-debuginfo/2/x86_64  Amazon 
> Extras debuginfo repo for docker
> enabled: 14
> amzn2extra-docker-source/2Amazon 
> Extras source repo for docker  
>  enabled: 14
> amzn2extra-epel/2/x86_64  Amazon 
> Extras repo for epel
> enabled:  1
> amzn2extra-epel-debuginfo/2/x86_64Amazon 
> Extras debuginfo repo for epel  
> enabled:  0
> amzn2extra-epel-source/2  Amazon 
> Extras source repo for epel
>  enabled:  1
> epel  epelyumrepo  
> 
>   enabled: 13,051
> epel-debuginfo/x86_64 Extra 
> Packages for Enterprise Linux 7 - x86_64 - Debug
>  enabled:  2,881
> epel-source/x86_64Extra 
> Packages for Enterprise Linux 7 - x86_64 - Source  
>   enabled:  6,913
> epel-testing/x86_64   Extra 
> Packages for Enterprise Linux 7 - Testing - x86_64  
>  enabled:927
> epel-testing-debuginfo/x86_64 Extra 
> Packages for Enterprise Linux 7 - Testing - x86_64 - Debug  
>  enabled:111
> epel-testing-source/x86_64Extra 
> Packages for Enterprise Linux 7 - Testing - x86_64 - Source
>   enabled:339
> mysql-cluster-7.5-community/x86_64M

Re: [ansible-project] repo error from ansible target - amazon

2019-04-17 Thread Jonathan Lozada De La Matta
you have python-pip misspelled.

On Wed, Apr 17, 2019 at 7:22 PM AQ  wrote:

> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=pyhton-pip
> state=present' -u test --become --ask-become-pass
> SUDO password:
> 172.31.13.61 | FAILED! => {
> "changed": false,
> "failed": true,
> "msg": "Failure talking to yum: failure: repodata/repomd.xml from
> amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to try.\nhttp://
> amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
> [Errno 14] HTTP Error 403 - Forbidden"
>
>
> -target (webserver)---
>
> [test@ip-172-31-13-61 ~]$ yum repolist all
> Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
>
> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
> [Errno 14] HTTP Error 403 - Forbidden
> Trying other mirror.
>
> http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
> [Errno 14] HTTP Error 403 - Forbidden
> Trying other mirror.
>
> https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/repodata/repomd.xml:
> [Errno 14] HTTPS Error 404 - Not Found
> Trying other mirror.
> repo id   repo name
>
>   status
> amzn2-core/2/x86_64   Amazon Linux
> 2 core repository
>enabled: 16,458
> amzn2-core-debuginfo/2/x86_64 Amazon Linux
> 2 core repository - debuginfo packages
>   enabled:  3,280
> amzn2-core-source/2   Amazon Linux
> 2 core repository - source packages
>enabled:  4,494
> amzn2extra-docker/2/x86_64Amazon
> Extras repo for docker
> enabled: 14
> amzn2extra-docker-debuginfo/2/x86_64  Amazon
> Extras debuginfo repo for docker
> enabled: 14
> amzn2extra-docker-source/2Amazon
> Extras source repo for docker
>  enabled: 14
> amzn2extra-epel/2/x86_64  Amazon
> Extras repo for epel
> enabled:  1
> amzn2extra-epel-debuginfo/2/x86_64Amazon
> Extras debuginfo repo for epel
> enabled:  0
> amzn2extra-epel-source/2  Amazon
> Extras source repo for epel
>  enabled:  1
> epel  epelyumrepo
>
>   enabled: 13,051
> epel-debuginfo/x86_64 Extra
> Packages for Enterprise Linux 7 - x86_64 - Debug
>  enabled:  2,881
> epel-source/x86_64Extra
> Packages for Enterprise Linux 7 - x86_64 - Source
>   enabled:  6,913
> epel-testing/x86_64   Extra
> Packages for Enterprise Linux 7 - Testing - x86_64
>  enabled:927
> epel-testing-debuginfo/x86_64 Extra
> Packages for Enterprise Linux 7 - Testing - x86_64 - Debug
>  enabled:111
> epel-testing-source/x86_64Extra
> Packages for Enterprise Linux 7 - Testing - x86_64 - Source
>   enabled:339
> mysql-cluster-7.5-community/x86_64MySQL
> Cluster 7.5 Community
>   enabled:145
> mysql-cluster-7.5-community-sourceMySQL
> Cluster 7.5 Community - Source
>  enabled:  8
> mysql-cluster-7.6-community/x86_64MySQL
> Cluster 7.6 Community
>   enabled:144
> mysql-cluster-7.6-community-sourceMySQL
> Cluster 7.6 Community - Source
>  enabled:  8
> mysql-connectors-community/x86_64 MySQL
> Connectors Community
>  enabled: 95
> mysql-connectors-community-source MySQL
> Connectors Community - Source
>   enabled: 46
> mysql-tools-community/x86_64  MySQL Tools
> Community
> enabled: 84
> mysql-tools-community-source  MySQL Tools
> Community - Source
>enabled: 42
> mysql-tools-preview/x86_64MySQL Tools
> Preview
> enabled: 13
> mysql-tools-preview-sourceMySQL Tools
> Preview - Source
>enabled:  6
> mysql55-community/x86_64  MySQL 5.5
> Community Server
>  enabled:427
> mysql55-community-source  MySQL 5.5
> Community Ser

Re: [ansible-project] error repo enablement

2019-04-17 Thread Jonathan Lozada De La Matta
looks like that repo you are trying to enable is not there at all ?


On Wed, Apr 17, 2019 at 7:07 PM AQ  wrote:

> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=
> https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
> enablerepo="amzn2-core-debuginfo/2/x86_64"' -u test --become
> --ask-become-pass
> SUDO password:
> 172.31.13.61 | FAILED! => {
> "changed": false,
> "failed": true,
> "msg": "Error setting/accessing repos: Error getting repository data
> for amzn2-core-debuginfo/2/x86_64, repository not found"
>
> --
> 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/8315aabc-342b-4a2b-a6a8-e9d6ee808b5d%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 

Jonathan lozada de la matta

AUTOMATION PRACTICE

-- 
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/CAFYJA%2BKqMupmrWjPV577dmAya97kK90_rMUV7vxhFg7Lyt_LKg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] repo error from ansible target - amazon

2019-04-17 Thread AQ
[test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=pyhton-pip 
state=present' -u test --become --ask-become-pass
SUDO password:
172.31.13.61 | FAILED! => {
"changed": false,
"failed": true,
"msg": "Failure talking to yum: failure: repodata/repomd.xml from 
amzn2extra-epel-debuginfo: [Errno 256] No more mirrors to 
try.\nhttp://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
 
[Errno 14] HTTP Error 403 - Forbidden"


-target (webserver)---

[test@ip-172-31-13-61 ~]$ yum repolist all
Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
 
[Errno 14] HTTP Error 403 - Forbidden
Trying other mirror.
http://amazonlinux.ap-southeast-2.amazonaws.com/2/extras/epel/7.11/debuginfo/x86_64/b53de08042d71c98ad809672a924f0906ffce47fa14135f15d8d8c792bf84d75/repodata/repomd.xml:
 
[Errno 14] HTTP Error 403 - Forbidden
Trying other mirror.
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm/repodata/repomd.xml:
 
[Errno 14] HTTPS Error 404 - Not Found
Trying other mirror.
repo id   repo name

  status
amzn2-core/2/x86_64   Amazon Linux 
2 core repository  
   enabled: 16,458
amzn2-core-debuginfo/2/x86_64 Amazon Linux 
2 core repository - debuginfo packages  
  enabled:  3,280
amzn2-core-source/2   Amazon Linux 
2 core repository - source packages
   enabled:  4,494
amzn2extra-docker/2/x86_64Amazon Extras 
repo for docker
  enabled: 14
amzn2extra-docker-debuginfo/2/x86_64  Amazon Extras 
debuginfo repo for docker  
  enabled: 14
amzn2extra-docker-source/2Amazon Extras 
source repo for docker  
 enabled: 14
amzn2extra-epel/2/x86_64  Amazon Extras 
repo for epel  
  enabled:  1
amzn2extra-epel-debuginfo/2/x86_64Amazon Extras 
debuginfo repo for epel
  enabled:  0
amzn2extra-epel-source/2  Amazon Extras 
source repo for epel
 enabled:  1
epel  epelyumrepo  

  enabled: 13,051
epel-debuginfo/x86_64 Extra 
Packages for Enterprise Linux 7 - x86_64 - Debug
 enabled:  2,881
epel-source/x86_64Extra 
Packages for Enterprise Linux 7 - x86_64 - Source  
  enabled:  6,913
epel-testing/x86_64   Extra 
Packages for Enterprise Linux 7 - Testing - x86_64  
 enabled:927
epel-testing-debuginfo/x86_64 Extra 
Packages for Enterprise Linux 7 - Testing - x86_64 - Debug  
 enabled:111
epel-testing-source/x86_64Extra 
Packages for Enterprise Linux 7 - Testing - x86_64 - Source
  enabled:339
mysql-cluster-7.5-community/x86_64MySQL Cluster 
7.5 Community  
  enabled:145
mysql-cluster-7.5-community-sourceMySQL Cluster 
7.5 Community - Source  
 enabled:  8
mysql-cluster-7.6-community/x86_64MySQL Cluster 
7.6 Community  
  enabled:144
mysql-cluster-7.6-community-sourceMySQL Cluster 
7.6 Community - Source  
 enabled:  8
mysql-connectors-community/x86_64 MySQL 
Connectors Community
 enabled: 95
mysql-connectors-community-source 

[ansible-project] error repo enablement

2019-04-17 Thread AQ
[test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 
'name=https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 
enablerepo="amzn2-core-debuginfo/2/x86_64"' -u test --become 
--ask-become-pass
SUDO password:
172.31.13.61 | FAILED! => {
"changed": false,
"failed": true,
"msg": "Error setting/accessing repos: Error getting repository data 
for amzn2-core-debuginfo/2/x86_64, repository not found"

-- 
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/8315aabc-342b-4a2b-a6a8-e9d6ee808b5d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] cant install dependencies for mysql and flask

2019-04-17 Thread Dick Visser
You don't make it particularly easy for to help you by not providing a
playbook, or details about the host you're trying to manage.
But, there are a few bits of information buried in that error you posted.
Most importantly the string 'amzn' in one of the the package names
suggests that you're using an AWS AMI.
I think in that universe the package you're after is called "python-devel".


Dick


On Wed, 17 Apr 2019 at 23:33, AQ  wrote:
>
> still doesn't work:
>
> [test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=python2-dev 
> state=present' -u test --become --ask-become-pass
> SUDO password:
> 172.31.13.61 | FAILED! => {
> "changed": false,
> "failed": true,
> "msg": "No package matching 'python2-dev' found available, installed or 
> updated",
> "rc": 126,
> "results": [
> "No package matching 'python2-dev' found available, installed or 
> updated"
> ]
> }
>
>
> On Wednesday, April 17, 2019 at 1:56:16 PM UTC+10, Sascha Andres wrote:
>>
>> Hi,
>>
>> depending on your distribution the packages might have a different name. 
>> Have you tried installing python-dev manually. It might be named python2-dev.
>>
>> Kind regards,
>> Sascha
>>
>> On Tue, Apr 16, 2019 at 11:13 PM AQ  wrote:
>>>
>>> [test@ip-172-31-1-143 ~]$ ansible-playbook 
>>> /home/test/AQ-Project2/playbook.yml -i /home/test/AQ-Project2/inventory.txt
>>>
>>> PLAY [Deploy a web application] 
>>> 
>>>
>>> TASK [Gathering Facts] 
>>> *
>>> ok: [db_and_web_server]
>>>
>>> TASK [Install dependencies] 
>>> 
>>> failed: [db_and_web_server] (item=[u'python', u'python-setuptools', 
>>> u'python-dev', u'build-essential', u'python-pip', u'python-mysqldb']) => 
>>> {"changed": false, "failed": true, "item": ["python", "python-setuptools", 
>>> "python-dev", "build-essential", "python-pip", "python-mysqldb"], "msg": 
>>> "No package matching 'python-dev' found available, installed or updated", 
>>> "rc": 126, "results": ["python-2.7.14-58.amzn2.0.4.x86_64 providing python 
>>> is already installed", "python2-setuptools-38.4.0-3.amzn2.0.6.noarch 
>>> providing python-setuptools is already installed", "No package matching 
>>> 'python-dev' found available, installed or updated"]}
>>> to retry, use: --limit @/home/test/Anas-Project2/playbook.retry
>>>
>>> PLAY RECAP 
>>> *
>>> db_and_web_server  : ok=1changed=0unreachable=0failed=1
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To post to this group, send email to ansible...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/ansible-project/44374cf9-87c5-46e4-bc4e-9017a7543f63%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/7fdfd004-5063-42a5-bf7c-8bf8e6d09a56%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.



-- 
Dick Visser
Trust & Identity Service Operations Manager
GÉANT

-- 
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/CAL8fbwP2O5a-T8g2YscJzkF%3DstH-v7pq7Rra1r2kd%2BkdKvqGdQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] cant install dependencies for mysql and flask

2019-04-17 Thread AQ
still doesn't work:

[test@ip-172-31-1-143 ~]$ ansible webservers -m yum -a 'name=python2-dev 
state=present' -u test --become --ask-become-pass
SUDO password:
172.31.13.61 | FAILED! => {
"changed": false,
"failed": true,
"msg": "No package matching 'python2-dev' found available, installed or 
updated",
"rc": 126,
"results": [
"No package matching 'python2-dev' found available, installed or 
updated"
]
}


On Wednesday, April 17, 2019 at 1:56:16 PM UTC+10, Sascha Andres wrote:
>
> Hi,
>
> depending on your distribution the packages might have a different name. 
> Have you tried installing python-dev manually. It might be named 
> python2-dev.
>
> Kind regards,
> Sascha
>
> On Tue, Apr 16, 2019 at 11:13 PM AQ > 
> wrote:
>
>> [test@ip-172-31-1-143 ~]$ ansible-playbook 
>> /home/test/AQ-Project2/playbook.yml -i /home/test/AQ-Project2/inventory.txt
>>
>> PLAY [Deploy a web application] 
>> 
>>
>> TASK [Gathering Facts] 
>> *
>> ok: [db_and_web_server]
>>
>> TASK [Install dependencies] 
>> 
>> failed: [db_and_web_server] (item=[u'python', u'python-setuptools', 
>> u'python-dev', u'build-essential', u'python-pip', u'python-mysqldb']) => 
>> {"changed": false, "failed": true, "item": ["python", "python-setuptools", 
>> "python-dev", "build-essential", "python-pip", "python-mysqldb"], "msg": 
>> "No package matching 'python-dev' found available, installed or updated", 
>> "rc": 126, "results": ["python-2.7.14-58.amzn2.0.4.x86_64 providing python 
>> is already installed", "python2-setuptools-38.4.0-3.amzn2.0.6.noarch 
>> providing python-setuptools is already installed", "No package matching 
>> 'python-dev' found available, installed or updated"]}
>> to retry, use: --limit @/home/test/Anas-Project2/playbook.retry
>>
>> PLAY RECAP 
>> *
>> db_and_web_server  : ok=1changed=0unreachable=0
>> failed=1
>>
>> -- 
>> 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...@googlegroups.com .
>> To post to this group, send email to ansible...@googlegroups.com 
>> .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/ansible-project/44374cf9-87c5-46e4-bc4e-9017a7543f63%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/7fdfd004-5063-42a5-bf7c-8bf8e6d09a56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Windows Lock Workstation

2019-04-17 Thread Seth Daemen
Hi Lukas

There are registry keys which prevent keyboard and mouse input

-- 
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/f02b5877-78f1-4134-ae92-c66def2d9f9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] format of the /etc/ansible/hosts file

2019-04-17 Thread eric.b.hymowitz via Ansible Project
Thanks.

--EbH

On Wednesday, April 17, 2019 at 9:47:48 AM UTC-4, Kai Stian Olstad wrote:
>
>
> All three of them are correct. 
>
> -- 
> 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/fdcf0753-40b8-4c83-95c6-4a58a3c1e596%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] ansible script to do remote execution of templates

2019-04-17 Thread rashmi nair
Hi All,

I have a scenario where I need to execute ansible script which will run the 
templates on remote server. I have list of remote servers which when given 
to delegate_to is not working and  fileglob is not copying the files to 
/tmp/copy rather folder creating a copy file.

Please help

- hosts: 127.0.0.1
  connection: local
  tasks:
- name: Install dependencies
  yum: name={{ item }} state=present
  with_items:
   - htop
   - git.x86_64
   - python-devel

- name: Clone ansible repo on remote server
  git: repo=ssh://git@*.git
   dest=/tmp
   version=feature/
   accept_hostkey=yes
  delegate_to: host1

- name: Install config
  template:
src: "{{ item }}"
dest: "/tmp/copy"
  with_fileglob: "*"
  delegate_to: host1

-- 
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/15a22a6c-c3bd-4722-bf44-19127bdcc554%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] stdout debogage in ansible

2019-04-17 Thread ryad9200000
Hi,

How delete with command in ansible.cfg the debogage on windows when i show 
variable ?

I don't want this content when i see a variable :

"msg": {
"changed": false,
"failed": false,

It's possible or not please ? i don't find in the doc, i see this lien : 
https://docs.ansible.com/ansible/latest/plugins/callback/debug.html

Thanks community ansible !! ;)

Regards,

-- 
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/fb2b5747-c503-4133-a43f-0472139fe91a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Problem windows when i see variable

2019-04-17 Thread ryad9200000
Hi,

upp please

Le mercredi 17 avril 2019 15:34:44 UTC+2, ryad9...@gmail.com a écrit :
>
> Hi,
>
> I don't understand, why mean about "the suppository is placed on the flat 
> part" ??
>
> Thanks very much
>
> Regards,
>
> Le mercredi 17 avril 2019 14:53:20 UTC+2, lander.hern...@gmail.com a 
> écrit :
>>
>> the suppository is placed on the flat part
>>
>

-- 
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/30d6f156-8482-48ee-9ab3-20ba28e3415b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] format of the /etc/ansible/hosts file

2019-04-17 Thread Kai Stian Olstad
On 17.04.2019 14:07, eric.b.hymowitz via Ansible Project wrote:
> I want to verify that these three statements are correct:
> 
> All "ungrouped" hosts must appear in the file before the first group label.
> 
> Once I have defined a group label, all following hosts are in that group,
> until EOF or the next group label.
> 
> Blank lines in between hosts do not end a group section.

All three of them are correct.

-- 
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/6831afc8-b96f-7b26-0d0c-01eff1001e30%40olstad.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Problem windows when i see variable

2019-04-17 Thread ryad9200000
Hi,

I don't understand, why mean about "the suppository is placed on the flat 
part" ??

Thanks very much

Regards,

Le mercredi 17 avril 2019 14:53:20 UTC+2, lander.hern...@gmail.com a écrit :
>
> the suppository is placed on the flat part
>

-- 
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/f8f415f1-c93b-48b2-bdbb-edd86883282c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Windows Lock Workstation

2019-04-17 Thread 'ground7612' via Ansible Project

>
> Hi Jordan,
>

Much appreciated, Thank you! 
I will think about it and also bring it up in the next Stakeholder Meeting 
to gather feedback.

May I ask if you would know of any other way (if you would have such a use 
case where you need to prevent user input at all during the patching 
process)?

Thank you
Lukas

-- 
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/c45d5fc5-33d0-4e2e-acc6-1dc34975ec2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] win_copy azure ansible module not working

2019-04-17 Thread dan
I don't do much Ansible work on Windows systems, but the message "Failed to 
connect to host via ssh" seems to imply that the connection type for that 
remote host isn't setup for Windows.  At minimum you'll need to setup these 
connection variables (connection type, user, and password) as shown here:

https://docs.ansible.com/ansible/latest/user_guide/windows_winrm.html#inventory-options

Once you get that setup, try re-running your playbook but add a "-vvv" 
(verbose output) to show more details on the error:
ansible-playbook -i inventory -vvv wincopy.yml

On Tuesday, April 16, 2019 at 3:12:08 PM UTC, gottumukkala srija wrote:
>
>
> Hi,
>
> We are running the playbook via azure cloud shell "bash" editor.
>
> The source file and the inventory are placed in the same folder and while 
> running playbook we are invoking the playbook and below is the command:
>
> ansible-playbook -i inventory wincopy.yml
>
> We are getting the below error:
> "fatal: [remote host]: UNREACHABLE! => {"changed": false, "msg": "Failed 
> to connect to the host via ssh: ssh: connect to host remote_host port 22: 
> Connection timed out", "unreachable": true}"
>
> We are trying to copy the file from Azure cloud shell to the remote 
> machine, but the error says ssh connection time out(Ideally it should be 
> *windows 
> exception as we are using windows* but it's trying ssh like linux machine)
>
> On Monday, April 15, 2019 at 11:57:28 PM UTC+5:30, d...@linder.org wrote:
>>
>> Please clarify a couple questions:
>>
>> 1. You're running the ansible command from a Linux (RedHat, Ubuntu, 
>> CentOS, Debian) system, correct?
>>
>> 2. The playbook you're using has these tasks:
>>
>> - name: Copy script from local to remote server
>>
>> win_copy:
>>
>>src: files
>>
>>dest: C:\
>>
>>register: myfile
>>
>>   - debug: var=myfile
>>
>>   - win_command: powershell.exe -ExecutionPolicy ByPass -File 
>> C:/userdata-winsetup.ps1
>>
>>
>> 3. The directory where your playbook and inventory file reside also have 
>> a directory called "files".
>>
>>
>> 4. Your inventory file has this section:
>>
>> [windows]
>>
>> 127.0.0.1
>>
>>
>> Based on your inventory file, you're attempting to run the commands in 
>> the playbook on the system you're running Ansible on.  Your inventory file 
>> probably needs the _windows_ server listed in the "[windows]" section like 
>> this:
>>
>>
>> [windows]
>>
>> MyWinSys01.example.com
>>
>>
>> Then when you run your playbook with Ansible, it will connect using the 
>> "winrm" protocol and login with "admin" (password: "admin"), then copy the 
>> files from ".\files\" to "c:\" on the remote system.
>>
>>
>> Once you've validated all that, please re-run the playbook with "-v" (or 
>> more for additional verbose output) and post it here.
>>
>>
>> Thanks,
>>
>> DanL
>>
>>
>> On Monday, April 15, 2019 at 4:53:45 AM UTC, gottumukkala srija wrote:
>>>
>>> I changed localhost to remote_host as suggested, but while running the 
>>> playbook getting error as "no hosts matched". 
>>>
>>> Is there any possible way that we can get on call to discuss 
>>> furtherPlease suggest..!!!
>>>
>>> On Friday, April 12, 2019 at 4:02:12 PM UTC+5:30, CORLEONE## wrote:

 If u want to copy from local to remote u should mention -host: 
 remote_hosti think u r using localhost

 On Fri, 12 Apr 2019, 14:36 gottumukkala srija,  
 wrote:

> localhost is windows. And we are using win_copy for copying the file. 
> Any alternative for this?
>
> On Friday, April 12, 2019 at 2:27:27 PM UTC+5:30, CORLEONE## wrote:
>>
>> its a module failure...is the localhost linux or 
>> windows.???...win_copy works for windows ...for rest use copy module
>>
>> On Fri, 12 Apr 2019, 14:02 gottumukkala srija,  
>> wrote:
>>
>>> Hi Jordan,
>>>
>>> Can you please describe it briefly? You want us to create a new VM 
>>> and then point that IP to add_host?
>>>
>>> On Thursday, April 11, 2019 at 12:30:28 PM UTC+5:30, Jordan Borean 
>>> wrote:

 If your inventory is targeting localhost then that means it's 
 trying to run a Windows module on the Ansible controller which won't 
 work. 
 You cna use the azure_rm_virtualmachine module to spin up a host but 
 then 
 you will have to use something like 'add_host' [1] to add the host for 
 the 
 current execution then change the play to that new host.

 [1] 
 https://docs.ansible.com/ansible/latest/modules/add_host_module.html

 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...@googlegroups.com.
>>> To post to this group, send email to ansible...@googlegroups.c

[ansible-project] Problem windows when i see variable

2019-04-17 Thread ryad9200000
Hi all,

I have this task :

- name: "Afficher la date et l'heure"
  timetest:
  register: time

- name: "Afficher le module time"
  debug:
  var: time

This module must display the date and time on a windows, but i see that :

TASK [Afficher le module time] 
***
ok: [localhost] => {
"time": {
"changed": false,
"failed": false,
"time": "2019-04-17 14:45:28.243939"

Why i have "changed": false,  and  "failed": false ?

Before, i have already meet this content but i have not never understand 
why... ;(

Normaly when i display simple variable i see only the result and not that 
... :(

can you help me please community ansible ;)

Thanks,

Regards

-- 
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/68522e29-60af-4af1-a271-46f42f9244e1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: Problem windows when i see variable

2019-04-17 Thread lander . hernandezmartinez
the suppository is placed on the flat part

-- 
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/2dafd68e-d20b-482e-a226-36b4597dc61a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] Re: format of the /etc/ansible/hosts file

2019-04-17 Thread lander . hernandezmartinez
the suppository is placed on the flat part

-- 
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/df834184-d327-47c3-8c62-2bf0f1c6bac5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] format of the /etc/ansible/hosts file

2019-04-17 Thread eric.b.hymowitz via Ansible Project
This is probably an FAQ, and I apologize, but I can't find this explicitly 
written anywhere.

In my /etc/ansible/hosts file, I have a few hosts that are not in any 
group, followed by a bunch of groups with hosts

hostA
hostB

hostC

hostD

[group1]
host1
host2
host3

I want to verify that these three statements are correct:

All "ungrouped" hosts must appear in the file before the first group label.

Once I have defined a group label, all following hosts are in that group, 
until EOF or the next group label.

Blank lines in between hosts do not end a group section.

Thanks.

--EbH

-- 
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/3cb567c7-2e68-40fc-afcd-beca6cec6b56%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: Limiting hosts when including playbooks

2019-04-17 Thread lander . hernandezmartinez
I TAKE PART IN THIS CONVERSATION. I TAKE ADVANTAGE OF FOR SAY THIS: "the 
suppository is placed on the flat part"

-- 
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/0b8fa66f-321d-41b7-bbf7-63729de27823%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] I need get to netmask

2019-04-17 Thread lander . hernandezmartinez
i need put into playbook and use this playbook in other machines. This 
machines is it so in vcenter

-- 
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/0a0c1356-0af7-4c99-8e70-07aa951d8c6d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] I need get to netmask

2019-04-17 Thread cavamagie
hi

for example for eth0


ansible_eth0.ipv4.netmask

Il giorno mer 17 apr 2019 alle ore 13:19
 ha scritto:
>
> How to get netmask in ansble??
>
> (I know to exist ansible all -i localhost, -m setup -c local but dont serve 
> 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/4da5e926-89bd-4770-8c8b-08f9575587b3%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/CAJ%3DxKPb-DO6Th4edNFww6aF9SajnmrLUseof1AfXB01PXfgZ4A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] I need get to netmask

2019-04-17 Thread lander . hernandezmartinez
How to get netmask in ansble??

(I know to exist *ansible all -i localhost, -m setup -c* local but dont 
serve 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/4da5e926-89bd-4770-8c8b-08f9575587b3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Re: Limiting hosts when including playbooks

2019-04-17 Thread 'Uffi Schnuffi' via Ansible Project
On Tuesday, April 9, 2019 at 4:33:08 PM UTC+2, Brian Coca wrote:

> create the groups the imported playbook uses in a  group_by in a preceding 
> play 
>

This is amazing!!! Thank you! : )


-- 
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/66e66912-b46f-4487-9639-121901471ecd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ansible-project] how to set python interpreter between different roles

2019-04-17 Thread christian . tremel

so i have this play to do some rpm package management. this involves 
removing the python package from the system. so i install some fallback 
python package which should be used while the sytem python is not available.
my play consists of three roles, the first two should use the system python 
and the third should use the fallback python. i have set the 
"ansible_python_interpreter" var in the third role but for unknown reasons 
this gest smeared over
to the first two roles, so i get "/usr/bin/ksh: /opt/bin/python:  not 
found." so how to set the "ansible_python_interpreter" var solely for  one 
role?

the play:

root@lpgaixmgmtlx01:/etc/ansible/aix/roles/do_aixtoolbox_migration>cat 
../../deploy_aixtoolbox.yml
- name: deploy aixtoolbox
  hosts: AIXTESTLPAR01
  gather_facts: false

  environment:
 PATH: "/opt/bin:/opt/freeware/bin:{{ ansible_env.PATH }}"
 SHELL: "/usr/bin/ksh"
 LIBPATH: "/opt/lib:/usr/lib:/lib:/opt/freeware/lib"


  roles:
   - install_additional_python
   - update_openssl_lpp
   - do_aixtoolbox_migration



 ansible_python_interpreter is set in role "do_aixtoolbox_migration" but 
also effects two two other roles.

root@lpgaixmgmtlx01:/etc/ansible/aix/roles/do_aixtoolbox_migration>cat vars/
main.yml

ansible_shell_executable: "/usr/bin/ksh"
ansible_shell_interpreter: "/usr/bin/ksh"
ansible_python_interpreter: "/opt/bin/python"





-- 
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/26684b12-b8f7-4e6e-b63c-9809f9c733b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ansible-project] Error while executed yml file

2019-04-17 Thread vikram acharya
Thank you Riaz  it worked

Regards
Vikram

On Wed, Apr 17, 2019 at 2:07 AM Fahad Riaz  wrote:

> try using this syntax and then execute your playbook.
>
> ---
> - hosts: webservers
>   sudo: yes
>
>
> and then so on and so forth
>
> On Tue, Apr 16, 2019 at 11:00 AM vikram acharya 
> wrote:
>
>> Hello Team
>>
>> Am pretty new to Ansible trying   , am getting an error while executing
>> yml file .
>> Here am trying to install httpd services  on one of web server i have
>> inventory file below are the details  ip details added  am able to ping all
>> these IP
>>
>> inventory file:
>>
>> mintty screen dump
>>
>> [webserver]  
>>172.31.17.222 
>>  
>>  [webserver:vars]
>> package_name=httpd   
>>  
>>   [dbserver] 
>>  172.31.17.101   
>>  
>>[local]   
>>   localhost
>>
>>
>> mintty screen dump
>>
>> ansible@ip-172-31-18-96:/etc/playbook$ ansible -i inventory -m ping all  
>>172.31.17.101 | SUCCESS => {  
>>   "changed": false,  
>>  "ping": "pong"  
>> }
>>172.31.17.222 | SUCCESS => {  
>>   "changed": false,  
>>  "ping": "pong"  
>> }
>>localhost | SUCCESS => {  
>>   "changed": false,  
>>  "ping": "pong"
>>
>>
>>
>> This is YMl file i have written :
>>
>> ---
>>   - hosts: webserver
>> sudo: yes
>> tasks:
>> - name: install apache
>>   package:
>>name: "{{package_name}}"
>>state: present
>> - name: start and enable apache service
>>   service:
>>name: "{{package_name}}"
>>enabled: yes
>>state: started
>> mintty screen dump
>>
>> ansible@ip-172-31-18-96:/etc/playbook$ ansible-playbook -i inventory 
>> webserver.yml
>>   ERROR! Syntax Error while loading YAML.
>>mapping values are not allowed in this context
>>  
>>The error appears to have been in 
>> '/etc/playbook/webserver.yml': line 2, column 10, but may
>>  be elsewhere in the file 
>> depending on the exact syntax problem.   
>>   The offending line 
>> appears to be:   
>>  --- 
>>  - 
>> hosts: webserver 
>> ^ here
>>
>>
>> Need your help for the same ..
>>
>> Thanks for advance
>>
>> Regards
>> Vikram
>>
>>
>> --
>> 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/CAFAnimCNRcVej5y7DUVCejVMqD53xve3a6bqwE_8xH8Km7yshw%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
> Best,
> Fahad Riaz
>
> --
> 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-pro