feat: add postgres backup option

This commit is contained in:
Michael Mandl 2022-10-06 17:07:05 +02:00
parent 64bf6cc38f
commit 0852cb8c00
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
4 changed files with 17 additions and 3 deletions

View file

@ -7,3 +7,7 @@ fi
if [[ -n "$DO_MYSQL_BACKUP" ]]; then
sh /usr/local/etc/urbackup/mysql_backup.sh
fi
if [[ -n "$DO_POSTGRES_BACKUP" ]]; then
sh /usr/local/etc/urbackup/postgres_backup.sh
fi