diff options
| author | Matthew Fennell <matthew@fennell.dev> | 2025-12-28 17:47:37 +0000 |
|---|---|---|
| committer | Matthew Fennell <matthew@fennell.dev> | 2025-12-28 17:47:37 +0000 |
| commit | bfc9b500264f754f016ddd7203376c7e21e8c92f (patch) | |
| tree | c1c6b90e4eeb02b71bfb4957389f9f6f941b97fa /renew-all | |
| parent | 07288f4b9a12bd8e26d420a46e03d56f7cf3d77f (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-x | renew-all | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"] |
