common: use list instead of with_items
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Markus 2020-10-08 22:30:36 +02:00
parent 40a64d1e77
commit 1b12b54a8d
1 changed files with 21 additions and 21 deletions

View File

@ -1,29 +1,29 @@
---
- name: Install misc software
apt: name={{ item }}
with_items:
- ca-certificates
- dnsutils
- git
- htop
- less
- mtr-tiny
- net-tools
- openssl
- psmisc
- pydf
- rsync
- sudo
- vim-nox
- zsh
- fail2ban
apt:
name:
- ca-certificates
- dnsutils
- git
- htop
- less
- mtr-tiny
- net-tools
- openssl
- psmisc
- pydf
- rsync
- sudo
- vim-nox
- zsh
- fail2ban
- name: Install software on KVM VMs
apt: name={{ item }}
with_items:
- acpid
- qemu-guest-agent
apt:
name:
- acpid
- qemu-guest-agent
when: ansible_virtualization_role == "guest" and ansible_virtualization_type == "kvm"
- name: Configure misc software