fix db vars

This commit is contained in:
Torma Kristóf 2022-04-16 22:59:06 +02:00
parent 67e0f3cc1b
commit d8acd0a697
2 changed files with 15 additions and 0 deletions

View File

@ -3,4 +3,11 @@ firewall:
- port: "3306"
proto: tcp
interface: "eth0"
backup:
folder: "/var/lib/mysql/backup"
tarfolder: "backup"
host: backup.stargate.internal
internal: true
prearecommand: "time ( mysqldump --all-databases --single-transaction --quick --lock-tables=false > /var/lib/mysql/backup/mysqldump.sql"
basedir: /mnt/backupstore
...

View File

@ -1,6 +1,14 @@
---
servicename: postgres
firewall:
- port: "5432"
proto: tcp
interface: "eth0"
backup:
folder: "/var/lib/postgresql/backup"
tarfolder: "backup"
host: backup.stargate.internal
internal: true
prearecommand: "time ( sudo -u postgres pg_dumpall > /var/lib/postgresql/backup/postgres.sql )"
basedir: /mnt/backupstore
...