diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-12-25 23:24:38 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-12-25 23:24:38 +0100 |
commit | 5166e2e4666f5450b26b4ef3e70ed2c42518b486 (patch) | |
tree | 9669e39c5227d085da4765477809d1fb11e73156 /roles/mysql_backup/README.md | |
parent | a0598d39a79bc8d7e44fdf0a8163e545764dbcb5 (diff) | |
download | ansible_collection-5166e2e4666f5450b26b4ef3e70ed2c42518b486.tar.gz |
mysql_backup: WIP
Diffstat (limited to 'roles/mysql_backup/README.md')
-rw-r--r-- | roles/mysql_backup/README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roles/mysql_backup/README.md b/roles/mysql_backup/README.md new file mode 100644 index 0000000..9ee05cf --- /dev/null +++ b/roles/mysql_backup/README.md @@ -0,0 +1,18 @@ +# mysql_backup + +Archives SQL Database dumps in an encrypted BORG repo. + +compatible with kompetenzbolzen.stuff.mariadb configuration for databases + +Example config + +``` +--- +sql_backup: + borg_repo_dir: /var/backup/borg_mysql/ + borg_repo_key: 'changeme' + keep_last: 3 + keep_daily: 7 + keep_weekly: 4 + keep_monthly: 6 +``` |