member_sw: use list instead of with_items

This commit is contained in:
Markus 2020-11-13 18:28:53 +01:00
parent 421785c336
commit a5bef39ba4
1 changed files with 8 additions and 8 deletions

View File

@ -1,11 +1,11 @@
---
- name: Install software for members
apt: name={{ item }}
with_items:
- ansible
- git
- irssi
- netcat6
- screen
- tmux
apt:
name:
- ansible
- git
- irssi
- netcat6
- screen
- tmux