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

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

2018-05-28 Thread Kai Stian Olstad
On 28.05.2018 16:04, f.floimair.comm...@gmail.com wrote: I'm running the following playbook snippet: tasks: - name: Install packages required for VMs apt: name {{ item }} state=present with_items: - cifs-utils - etckeeper The output for all packages is "

[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