diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2025-02-11 22:50:49 -0500 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2025-02-11 22:50:49 -0500 |
commit | 7047f830acfe84e840403e69df161b9d51aca673 (patch) | |
tree | e444273e3412e677c74958468f274ed51f1aea4e /files/usr/local/libexec/prosody-acme-proxy.xmpp_server | |
parent | 21e42dd2db8d987dbd08a3254ff0719d577c005e (diff) | |
download | infrastructure-7047f830acfe84e840403e69df161b9d51aca673.tar.gz |
fixes for kde6 upgrade
Diffstat (limited to 'files/usr/local/libexec/prosody-acme-proxy.xmpp_server')
-rw-r--r-- | files/usr/local/libexec/prosody-acme-proxy.xmpp_server | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/usr/local/libexec/prosody-acme-proxy.xmpp_server b/files/usr/local/libexec/prosody-acme-proxy.xmpp_server index 70faddd..776aae8 100644 --- a/files/usr/local/libexec/prosody-acme-proxy.xmpp_server +++ b/files/usr/local/libexec/prosody-acme-proxy.xmpp_server @@ -44,8 +44,8 @@ md5_new=$(md5sum "$CERT_DIR"/*.crt "$CERT_DIR"/*.key | tee "$CHECKSUM_FILE") # If any certificates differ, reload prosody. if [ "$md5_old" != "$md5_new" ]; then - if prosodyctl status >/dev/null 2>&1; then - prosodyctl reload + if service prosody status >/dev/null; then + service prosody reload else echo 'prosody not running, not reloading' fi |