summaryrefslogtreecommitdiff
path: root/renew-all
diff options
context:
space:
mode:
authorMatthew Fennell <matthew@fennell.dev>2025-12-28 17:47:37 +0000
committerMatthew Fennell <matthew@fennell.dev>2025-12-28 17:47:37 +0000
commitbfc9b500264f754f016ddd7203376c7e21e8c92f (patch)
treec1c6b90e4eeb02b71bfb4957389f9f6f941b97fa /renew-all
parent07288f4b9a12bd8e26d420a46e03d56f7cf3d77f (diff)
Hardcode config file path under /etc/opt
The config file gets installed to here in reality. I could introduce some config, for example overwriting this during the build process, I think that would be overkill.
Diffstat (limited to 'renew-all')
-rwxr-xr-xrenew-all2
1 files changed, 1 insertions, 1 deletions
diff --git a/renew-all b/renew-all
index af06357..f29438a 100755
--- a/renew-all
+++ b/renew-all
@@ -9,7 +9,7 @@ import tomllib
def main() -> None:
- with open("config.toml", "rb") as config_file:
+ with open("/etc/opt/acme/config.toml", "rb") as config_file:
full_config = tomllib.load(config_file)
config = full_config["config"]