automation/deployer/roles/deploy/tasks/main.yml

13 lines
267 B
YAML
Raw Normal View History

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