ooops!
This commit is contained in:
parent
cd820411c4
commit
5ddfbb3a7b
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ def read_secret_file(secret: str, home: bool = False) -> str:
|
|||
if home:
|
||||
path = os.path.expanduser(f"~/.secrets/{secret}")
|
||||
else:
|
||||
path = f"/var/secrets/{secret}"
|
||||
path = f"/run/secrets/{secret}"
|
||||
if not os.path.exists(path):
|
||||
raise FileNotFoundError(f"Secret file {path} does not exist or cannot be read.")
|
||||
with open(file=path, mode="r") as secret_file:
|
||||
|
|
Loading…
Reference in a new issue