diff options
-rw-r--r-- | misc/certs.py | 4 | ||||
-rw-r--r-- | nginx/sync.py | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/misc/certs.py b/misc/certs.py index 889ef33..2b3e9a1 100644 --- a/misc/certs.py +++ b/misc/certs.py @@ -3,7 +3,7 @@ from tarfile import TarFile from commia.bearer import get_key, keys from commia.prelude import * -from commia.ssh import scp +from commia.ssh import scp, ssh_args from commia.util import with_written buffer = get_key(keys.certificates.certs, decode=False) @@ -13,3 +13,5 @@ for name in tar.getnames(): tar.extractfile(name).read(), lambda path: scp(path, f"callosum:/etc/tls/{name}"), ) + +run_check(p([*ssh_args("callosum"), "systemctl", "restart", "nginx"])) diff --git a/nginx/sync.py b/nginx/sync.py index 8387e99..abd7e18 100644 --- a/nginx/sync.py +++ b/nginx/sync.py @@ -19,5 +19,5 @@ config = Path("nginx/nginx.conf").read_text().replace("%SERVERS%", servers_inden with_written(config, lambda path: scp(path, "callosum:/etc/nginx/nginx.conf")) -if run(p([*ssh_args(), "nginx", "-t"])).returncode == 0: - run_check(p([*ssh_args(), "systemctl", "restart", "nginx"])) +if run(p([*ssh_args("callosum"), "nginx", "-t"])).returncode == 0: + run_check(p([*ssh_args("callosum"), "systemctl", "restart", "nginx"])) |