diff --git a/scripts/py/common/common.py b/scripts/py/common/common.py index 762e42a..fd6e9d6 100644 --- a/scripts/py/common/common.py +++ b/scripts/py/common/common.py @@ -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: