2020-04-09 17:29:12 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Deploy Wordpress sites
|
|
|
|
include_tasks: wordpress.yml
|
|
|
|
loop: "{{ sites }}"
|
2020-04-20 15:44:45 +02:00
|
|
|
when: item.type == "wordpress"
|
2020-04-28 11:59:52 +02:00
|
|
|
tags: wordpress
|
|
|
|
|
|
|
|
- name: Deploy Drupal sites
|
|
|
|
include_tasks: drupal.yml
|
|
|
|
loop: "{{ sites }}"
|
|
|
|
when: item.type == "drupal"
|
|
|
|
tags: drupal
|