mirror of
https://github.com/netinvent/npbackup.git
synced 2025-10-29 23:06:17 +08:00
Add default configuration
This commit is contained in:
parent
49ce822e40
commit
48fbfdf475
1 changed files with 7 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue