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.
12 lines
372 B
YAML
12 lines
372 B
YAML
---
|
|
|
|
### tags:
|
|
|
|
- name: "Export database <{{ target_database }}> to <{{ upload_directory }}/{{ database_backup_file }}>"
|
|
community.mysql.mysql_db:
|
|
name: "{{ target_database }}"
|
|
state: dump
|
|
target: "/{{ upload_directory }}/{{ database_backup_file }}"
|
|
config_file: "/etc/mysql/mariadb.conf.d/50-client.cnf"
|
|
login_password: "{{ mysql_root_password }}"
|