web: use list instead of with_items

This commit is contained in:
Markus 2020-11-13 18:26:10 +01:00
parent 28c9d8ad3a
commit d8ab59accc
1 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
---
- name: Install dependencies
apt: name={{ item }}
with_items:
- php-fpm
- php-ldap
- php-sqlite3
- php-xml
apt:
name:
- php-fpm
- php-ldap
- php-sqlite3
- php-xml
- name: Create vhost directory
file: path=/var/www/kitchen state=directory owner=www-data group=www-data