Apt module changed format

This commit is contained in:
Jan 2020-04-14 21:21:39 +02:00
parent bbbbce3137
commit 6c0156850b
1 changed files with 7 additions and 6 deletions

View File

@ -1,12 +1,13 @@
---
- name: Install misc software
apt: name={{ item }}
with_items:
- htop
- rsync
- vim-nox
- zsh
apt:
state: latest
pkg:
- htop
- rsync
- vim-nox
- zsh
- name: Configure misc software
copy: src={{ item.src }} dest={{ item.dest }}