sdis29-2/ansible/apdbdump.yml
Your Name 8b53ad8ad7 modified: apdb.yml
modified:   apdbdump.yml
	new file:   sdis29.sql
2024-11-08 11:23:49 +01:00

16 lines
276 B
YAML

---
- hosts: all
become: true
tasks:
- name: Dump database
community.mysql.mysql_db:
state: dump
name: sdis29
target: /tmp/sdis29.sql
- name: Copy database dump file
fetch:
src: /tmp/sdis29.sql
dest: /home/debian/sdis29/ansible