From 6e95c281b7bf96cfe0026b2516178bcc5e60357e Mon Sep 17 00:00:00 2001 From: "pulsar89.5" Date: Fri, 21 Jun 2024 12:22:53 +0200 Subject: [PATCH] feat: Allow to backup postgresql --- templates/config.yaml.j2 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/config.yaml.j2 b/templates/config.yaml.j2 index 5d5acca..1344bd0 100644 --- a/templates/config.yaml.j2 +++ b/templates/config.yaml.j2 @@ -59,3 +59,11 @@ mariadb_databases: format: sql add_drop_database: true {% endif %} + +{% if borgmatic_postgresql_enabled %} +postgresql_databases: + - name: all + username: postgres + format: plain + add_drop_database: true +{% endif %}