Add default configuration

This commit is contained in:
Orsiris de Jong 2023-02-01 17:28:34 +01:00
parent 49ce822e40
commit 48fbfdf475

View file

@ -41,7 +41,13 @@ ENCRYPTED_OPTIONS = [
{"section": "options", "name": "auto_upgrade_server_password", "type": str},
]
empty_config_dict = {"backup": {}, "repo": {}, "prometheus": {}, "env": {}}
empty_config_dict = {"backup": {
"use_fs_snapshot": True,
"ignore_cloud_files": True,
"exclude_cache_dirs": True,
}, "repo": {
"minimum_backup_age": 86400
}, "prometheus": {}, "env": {}, "options": {}}
def decrypt_data(config_dict):