29 lines
No EOL
536 B
YAML
29 lines
No EOL
536 B
YAML
---
|
|
- name: "Set site_data_path to {{ www_path }}/{{ site.slug }}"
|
|
set_fact: site_data_path="{{ www_path }}/{{ site.slug }}"
|
|
tags: always
|
|
|
|
####################
|
|
# Render templates #
|
|
####################
|
|
|
|
- name: "Render templates"
|
|
import_tasks: render.yml
|
|
tags: render
|
|
|
|
#######################
|
|
# MySQL configuration #
|
|
#######################
|
|
|
|
- name: "Setup MySQL"
|
|
import_tasks: mysql.yml
|
|
tags: mysql
|
|
|
|
#################
|
|
# Setup backups #
|
|
#################
|
|
|
|
- name: "Setup backups"
|
|
import_tasks: backup.yml
|
|
tags: backup
|
|
|