From ce859144156524def1b22be5a8a8c9441d4f9b4d Mon Sep 17 00:00:00 2001 From: Tristan Andrus Date: Thu, 27 Mar 2025 07:05:44 -0600 Subject: [PATCH] Fix keys location --- basketwatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basketwatch.py b/basketwatch.py index 3acd829..5204888 100755 --- a/basketwatch.py +++ b/basketwatch.py @@ -27,7 +27,7 @@ def requestsync(): subprocess.run(['rsync', '-ravzL', '-e', - 'ssh -i /root/.ssh/id_rsa', + 'ssh -i /app/keys/id_rsa', REMOTE_DIRECTORY, LOCAL_DEST], check=True) return jsonify({'status': 'OK'})