You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
423 B
YAML
25 lines
423 B
YAML
---
|
|
|
|
### tags:
|
|
|
|
- name: "Setup postgres for {{ inventory_hostname }}"
|
|
include_role:
|
|
name: postgres
|
|
tasks_from: _postgres-acls
|
|
when:
|
|
- database_create
|
|
|
|
- name: "Create postgres backup"
|
|
include_role:
|
|
name: postgres
|
|
tasks_from: _create-backup
|
|
when:
|
|
- database_backup
|
|
|
|
- name: "Restore postgres backup"
|
|
include_role:
|
|
name: postgres
|
|
tasks_from: _restore-backup
|
|
when:
|
|
- database_restore
|