Fixing restic call for non-docker envs

This commit is contained in:
2026-07-24 12:28:15 -07:00
parent 1a60f94b13
commit 7ffbe713e9

View File

@@ -1003,10 +1003,10 @@ chmod -R 777 /opt/keys")))
"--password-file" "/restic-password"
"--json")))
(else
(process* "restic"
(process* "/bin/restic"
`("snapshots"
"--repo" ,(conc "s3:" (alist-ref 'backblaze-bucket-url service-config))
"--password-file" password-path
"--password-file" ,password-path
"--json")
`(("AWS_ACCESS_KEY_ID" . ,(alist-ref 'backblaze-key-id service-config))
("AWS_SECRET_ACCESS_KEY" . ,(alist-ref 'backblaze-application-key service-config))))))