From 6a30e9178c5eb3decd70bab4dde4170e54fd1fbc Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 9 Nov 2015 13:12:05 -0600 Subject: [PATCH 1/3] Updates firefox logo in unsupported page. --- css/unsupported_browser.css | 4 ++-- unsupported_browser.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/css/unsupported_browser.css b/css/unsupported_browser.css index 75ac83c0f..0958ea123 100644 --- a/css/unsupported_browser.css +++ b/css/unsupported_browser.css @@ -101,11 +101,11 @@ a { height: 79px; background-image: url('/images/chromium.png'); } -#firefox-nightly_logo +#firefox_logo { width: 73px; height: 79px; - background-image: url('/images/firefox-nightly.png'); + background-image: url('/images/firefox.png'); } #opera_logo diff --git a/unsupported_browser.html b/unsupported_browser.html index fd4837e7b..68981fbab 100644 --- a/unsupported_browser.html +++ b/unsupported_browser.html @@ -35,7 +35,7 @@
Firefox
- +
DOWNLOAD
From b6cb424720828f903d8b90b153f11b4ade094ae7 Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 9 Nov 2015 13:30:13 -0600 Subject: [PATCH 2/3] Fixes ff logo width. --- css/unsupported_browser.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/unsupported_browser.css b/css/unsupported_browser.css index 0958ea123..847103b91 100644 --- a/css/unsupported_browser.css +++ b/css/unsupported_browser.css @@ -97,7 +97,7 @@ a { } #chromium_logo { - width: 77px; + width: 85px; height: 79px; background-image: url('/images/chromium.png'); } From 1bb5188ac851ecd96b65634858c1a0e108d3c946 Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 9 Nov 2015 16:26:13 -0600 Subject: [PATCH 3/3] Simplifies the check for installed nginx, fixes purge when nginx was not used. --- debian/jitsi-meet.postinst | 4 ++-- debian/jitsi-meet.postrm | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/jitsi-meet.postinst b/debian/jitsi-meet.postinst index 125978243..fdf38cccc 100644 --- a/debian/jitsi-meet.postinst +++ b/debian/jitsi-meet.postinst @@ -45,8 +45,8 @@ case "$1" in # stores the hostname so we will reuse it later, like in purge db_set jitsi-meet/jvb-hostname $JVB_HOSTNAME - NGINX_INSTALL_CHECK="$(dpkg-query -W -f '${PackageSpec}:${Status}\n' nginx 2>&1 | grep -v "ok installed" || :)" - if [ -z "${NGINX_INSTALL_CHECK}" ]; then + NGINX_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'nginx' 2>/dev/null | awk '{print $3}' || true)" + if [ "$NGINX_INSTALL_CHECK" = "installed" ] || [ "$NGINX_INSTALL_CHECK" = "unpacked" ] ; then FORCE_NGINX="true" fi diff --git a/debian/jitsi-meet.postrm b/debian/jitsi-meet.postrm index 3e199f81e..807dc38cb 100644 --- a/debian/jitsi-meet.postrm +++ b/debian/jitsi-meet.postrm @@ -35,6 +35,8 @@ case "$1" in rm -f /etc/jitsi/meet/$JVB_HOSTNAME-config.js rm -f /etc/nginx/sites-available/$JVB_HOSTNAME.conf rm -f /etc/nginx/sites-enabled/$JVB_HOSTNAME.conf + rm -f /etc/jitsi/videobridge/$JVB_HOSTNAME.jks + rm -f /etc/jitsi/videobridge/$JVB_HOSTNAME.p12 fi ;; upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)