automation/deployer/roles/build/tasks/synapse.yml
2020-06-01 08:21:27 +02:00

28 lines
559 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
############################
# PostgreSQL configuration #
############################
- name: "Setup PostgreSQL"
import_tasks: postgres.yml
tags: postgres
#################
# Setup backups #
#################
- name: "Setup backups"
import_tasks: backup.yml
tags: backup