diff options
author | xengineering <me@xengineering.eu> | 2021-10-10 12:19:42 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-10-10 12:19:42 +0200 |
commit | 553e726599edfd187b255132f7b9951734b12b38 (patch) | |
tree | ead1918e30818fac8165f4b9b9447ee0b86b3bcf /config | |
parent | b143bb0fc8ac9d8cc9a40e9bd92108ab3dcef11d (diff) | |
download | xbackup-553e726599edfd187b255132f7b9951734b12b38.tar xbackup-553e726599edfd187b255132f7b9951734b12b38.tar.zst xbackup-553e726599edfd187b255132f7b9951734b12b38.zip |
Breaking: Change Config File Structure for v1.0.0
Diffstat (limited to 'config')
-rw-r--r-- | config/debug.json | 8 | ||||
-rw-r--r-- | config/default.json | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/config/debug.json b/config/debug.json index 8f68241..0a0e6d2 100644 --- a/config/debug.json +++ b/config/debug.json @@ -1,7 +1,9 @@ { - "backup":{ - "backup_source":"fakeroot", - "borg_repos_folder":"fakeroot/var/lib/xbackup/borg", + "generic":{ + "borg_repos_folder":"fakeroot/var/lib/xbackup/borg" + }, + "paths":{ + "backup_root":"fakeroot", "blacklist":[ "dev/*", "lost+found/*", diff --git a/config/default.json b/config/default.json index 5285bf4..ecb6ce9 100644 --- a/config/default.json +++ b/config/default.json @@ -1,7 +1,9 @@ { - "backup":{ - "backup_source":"/", - "borg_repos_folder":"/var/lib/xbackup/borg", + "generic":{ + "borg_repos_folder":"/var/lib/xbackup/borg" + }, + "paths":{ + "backup_root":"/", "blacklist":[ "dev/*", "lost+found/*", |