diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2023-01-21 19:34:11 +0100 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2023-01-21 19:36:09 +0100 |
commit | 836d7716546e1b6099542e4e3ccafaeec829b7bc (patch) | |
tree | 22e6b3aa31b6bdbe50c9694c5f6c8d3ab386e7e4 /roles/space_server/files | |
parent | f3b580ea7db54a608d3ff5668714423f771ec355 (diff) | |
download | labitat-ansible-836d7716546e1b6099542e4e3ccafaeec829b7bc.tar.gz labitat-ansible-836d7716546e1b6099542e4e3ccafaeec829b7bc.tar.xz labitat-ansible-836d7716546e1b6099542e4e3ccafaeec829b7bc.zip |
space_server: radius: restart radiusd on new certificates
Mushbie reports that Windows complains about out of date certificates
even when certbot is running fine, so try restarting radiusd on new
certificates rather than just telling it to reload its configuration.
Diffstat (limited to 'roles/space_server/files')
-rwxr-xr-x | roles/space_server/files/radius/certbot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/space_server/files/radius/certbot.sh b/roles/space_server/files/radius/certbot.sh index f6749a8..49214b5 100755 --- a/roles/space_server/files/radius/certbot.sh +++ b/roles/space_server/files/radius/certbot.sh @@ -8,7 +8,7 @@ case "$RENEWED_LINEAGE" in "$RENEWED_LINEAGE/privkey.pem" \ "$RENEWED_LINEAGE/fullchain.pem" \ /etc/raddb/certs/ - systemctl reload radiusd.service + systemctl restart radiusd.service ;; esac |