22 lines
No EOL
388 B
YAML
22 lines
No EOL
388 B
YAML
---
|
|
|
|
- name: Build Wordpress sites
|
|
include_tasks: wordpress.yml
|
|
loop: "{{ sites }}"
|
|
when: item.type == "wordpress"
|
|
tags: wordpress
|
|
|
|
- name: Build Drupal sites
|
|
include_tasks: drupal.yml
|
|
loop: "{{ sites }}"
|
|
when: item.type == "drupal"
|
|
tags: drupal
|
|
|
|
|
|
# build an image
|
|
# do the msmtp bullshit
|
|
# docker compose
|
|
# nginx
|
|
# let's encrypt
|
|
|
|
# in another role: deploy the stuff |