Skip to content

Commit

Permalink
fix(deb): Restart jicofo on new install.
Browse files Browse the repository at this point in the history
Testing clean install on Ubuntu 24.04 seems to end up with jicofo not connected due to the certificate not being validated.
  • Loading branch information
damencho committed Sep 16, 2024
1 parent ede2695 commit 936fa55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion debian/jitsi-meet-prosody.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,10 @@ case "$1" in
if [ "$PROSODY_CONFIG_PRESENT" = "false" ]; then
invoke-rc.d prosody restart || true

# In case we had updated the certificates and restarted prosody, let's restart and the bridge if possible
# In case we had updated the certificates and restarted prosody, let's restart and the bridge and jicofo if possible
if [ -d /run/systemd/system ] && [ "$CERT_ADDED_TO_TRUST" = "true" ]; then
systemctl restart jitsi-videobridge2.service >/dev/null || true
systemctl restart jicofo.service >/dev/null || true
fi
fi
;;
Expand Down

0 comments on commit 936fa55

Please sign in to comment.