Update .gitignore

This commit is contained in:
augustin64 2025-03-22 18:48:44 +01:00
parent dab704a07d
commit f398c6c531
2 changed files with 5 additions and 3 deletions

4
.gitignore vendored
View File

@ -160,4 +160,6 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
src/config.py
src/config.py
latest-success
logs

View File

@ -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():