From 5ddfbb3a7b4eea730794a21e14d91f6fbc997337 Mon Sep 17 00:00:00 2001 From: cswimr Date: Mon, 2 Dec 2024 20:52:24 -0500 Subject: [PATCH] ooops! --- scripts/py/common/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: