fixes
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
{
|
{
|
||||||
base = {
|
base = {
|
||||||
repository = "local:/mnt/backup";
|
repository = "local:/mnt/backup";
|
||||||
passwordFile = "${config.xdg.configHome}/resticprofile/password.txt";
|
password-file = "${config.xdg.configHome}/resticprofile/password.txt";
|
||||||
status-file = "{{ .ConfigDir }}/backup-status.json";
|
status-file = "{{ .ConfigDir }}/backup-status.json";
|
||||||
retention = {
|
retention = {
|
||||||
after-backup = true;
|
after-backup = true;
|
||||||
@@ -13,7 +13,19 @@
|
|||||||
};
|
};
|
||||||
backup = {
|
backup = {
|
||||||
verbose = true;
|
verbose = true;
|
||||||
# exclude-file = "{{ .ConfigDir }}/profiles/excludes";
|
exclude = [
|
||||||
|
".vscode-server"
|
||||||
|
".cache"
|
||||||
|
".venv"
|
||||||
|
".pyenv"
|
||||||
|
"data/postgres"
|
||||||
|
"build"
|
||||||
|
"__pycache__"
|
||||||
|
"*.log"
|
||||||
|
"*.egg-info"
|
||||||
|
"*.csv"
|
||||||
|
"*.m4a"
|
||||||
|
];
|
||||||
schedule-permission = "system";
|
schedule-permission = "system";
|
||||||
schedule-priority = "background";
|
schedule-priority = "background";
|
||||||
check-after = true;
|
check-after = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user