From 7ffbe713e99bdf0f1952721e65776061071cfc6b Mon Sep 17 00:00:00 2001 From: Thomas Hintz Date: Fri, 24 Jul 2026 12:28:15 -0700 Subject: [PATCH] Fixing restic call for non-docker envs --- src/nassella.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nassella.scm b/src/nassella.scm index 59f301d..8c77a1b 100644 --- a/src/nassella.scm +++ b/src/nassella.scm @@ -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))))))