From f398c6c5315edaeb6cac8963b63debd21aa20b2b Mon Sep 17 00:00:00 2001 From: augustin64 Date: Sat, 22 Mar 2025 18:48:44 +0100 Subject: [PATCH] Update .gitignore --- .gitignore | 4 +++- src/main.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 80773fa..5246483 100644 --- a/.gitignore +++ b/.gitignore @@ -160,4 +160,6 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ -src/config.py \ No newline at end of file +src/config.py +latest-success +logs \ No newline at end of file diff --git a/src/main.py b/src/main.py index 23bfb01..7b77b66 100644 --- a/src/main.py +++ b/src/main.py @@ -25,10 +25,10 @@ if not os.path.exists(config.DISK): exit(1) passwd = requests.get(config.PWD_URL).text.strip() -log("Got password :", passwd) +log("Got password") ssh_key_passwd = requests.get(config.SSH_KEY_PWD_URL).text.strip() -log("Got password :", ssh_key_passwd) +log("Got ssh passphrase") class Drive():