Allow to pass extra attributes to backup PostgreSQL databases

This commit is contained in:
Greg Karékinian
2019-05-14 16:39:21 +02:00
parent c9547582b7
commit d398c167ca
4 changed files with 26 additions and 20 deletions

View File

@@ -27,7 +27,8 @@ default["backup"]["mysql"]["username"] = "root"
default["backup"]["mysql"]["host"] = "localhost"
# PostgreSQL default settings
default["backup"]["postgresql"]["databases"] = []
default["backup"]["postgresql"]["databases"] = {}
default["backup"]["postgresql"]["username"] = "postgres"
default["backup"]["postgresql"]["host"] = "localhost"
default["backup"]["postgresql"]["port"] = 5432