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.
19 lines
460 B
YAML
19 lines
460 B
YAML
---
|
|
|
|
### tags:
|
|
|
|
- name: "Updating <wordpress> database on {{ inventory_hostname }}"
|
|
include_role:
|
|
name: maria
|
|
tasks_from: _update_database_state
|
|
when:
|
|
- database_backup_state is not defined
|
|
|
|
- name: "Creating/Restoring <wordpress> database backup on {{ inventory_hostname }}"
|
|
include_role:
|
|
name: maria
|
|
tasks_from: _create_database_backup.yml
|
|
when:
|
|
- database_backup_state is defined
|
|
- database_backup_state in ['dump', 'restore']
|