[ansible-project] Re: Unable to Ping Ansible Hosts in Inventory from Azure Cloudshell

2018-05-09 Thread f . floimair . commend
By default Azure VMs do not answer pings (Microsoft blocks that). So this is not ansible's fault. Use something else to "ping" your VM instead. Am Montag, 7. Mai 2018 19:36:01 UTC+2 schrieb Carlton Patterson: > > Hello Community, > > I have created a Centos host in Azure and added the hosts to

[ansible-project] Re: apt module is not installing anything if package source is standard apt repository

2018-05-28 Thread f . floimair . commend
Just as a follow-up: If i install a .deb package directly that works flawlessly. Only if the source is the regular apt list, then this happens Am Montag, 28. Mai 2018 16:04:36 UTC+2 schrieb f.floimai...@gmail.com: > > Hi! > > I'm having an issue with the apt module and my playbook with Ansible

[ansible-project] apt module is not installing anything if package source is standard apt repository

2018-05-28 Thread f . floimair . commend
Hi! I'm having an issue with the apt module and my playbook with Ansible 2.5.3 (2.5.2 is behaving the same). I'm running the following playbook snippet: tasks: - name: Install packages required for VMs apt: name {{ item }} state=present with_items: - cifs-utils

Re: [ansible-project] apt module is not installing anything if package source is standard apt repository

2018-05-28 Thread f . floimair . commend
Oh man, i feel stupid. That did the trick. Thanks a lot! Am Montag, 28. Mai 2018 16:09:27 UTC+2 schrieb Kai Stian Olstad: > > On 28.05.2018 16:04, f.floimai...@gmail.com wrote: > > I'm running the following playbook snippet: > > > > tasks: > > - name: Install packages required for VMs

[ansible-project] Possible Bug in azure_rm_networkinterface module (Ansible 2.5.0)

2018-04-11 Thread f . floimair . commend
Hi everyone! I am using Ansible 2.5.0 and I think I found a bug in the azure_rm_networkinterface module (either in the code or the documentation). When I create a network-interface that should be used with an already existing Network Security Group (NSG), it never uses the existing

[ansible-project] Re: Possible Bug in azure_rm_networkinterface module (Ansible 2.5.0)

2018-04-16 Thread f . floimair . commend
I filed a new issue for this: https://github.com/ansible/ansible/issues/38809 Am Mittwoch, 11. April 2018 14:48:28 UTC+2 schrieb f.floimai...@gmail.com: > > Hi everyone! > > > > I am using Ansible 2.5.0 and I think I found a bug in the > azure_rm_networkinterface module (either in the code

[ansible-project] Re: Ansible Azure azure_rm_networkinterface question regarding security_group_name

2018-04-23 Thread f . floimair . commend
Am Freitag, 20. April 2018 19:44:07 UTC+2 schrieb Jeff_R: > > Trying to build a NIC without creating or using a NSG...this doesn't seem > possible. If we leave the value out it creates one using defaults. We've > tried using "security_group_name: None" also "security_group: no" and of >

[ansible-project] List of items in deb parameter of apt module

2019-04-18 Thread f . floimair . commend
Hi! Since the with_items are going to be deprecated and following the porting guide here: https://docs.ansible.com/ansible/latest/porting_guides/porting_guide_2.7.html I tried to rewrite some of my tasks where I am installing debian packages to use list format (which works with packages that