Fix an ansible compatibility issue. #11

Merged
adellam merged 1 commits from :master into master 2020-04-27 15:59:27 +02:00
1 changed files with 1 additions and 2 deletions

View File

@ -1,8 +1,7 @@
---
- block:
- name: Install the wordpress php prerequisites
apt: name={{ item }} state=present cache_valid_time=1800
with_items: '{{ wordpress_php_prereq }}'
apt: name={{ wordpress_php_prereq }} state=present cache_valid_time=1800
- name: Get the wordpress CLI tool
get_url: url={{ wordpress_cli_url }} dest={{ wordpress_cli_bin }} mode=0755