|
|
@@ -52,7 +52,11 @@ case "$1" in
|
|
52
|
52
|
db_set jitsi-meet/jvb-hostname $JVB_HOSTNAME
|
|
53
|
53
|
|
|
54
|
54
|
NGINX_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'nginx' 2>/dev/null | awk '{print $3}' || true)"
|
|
55
|
|
- if [ "$NGINX_INSTALL_CHECK" = "installed" ] || [ "$NGINX_INSTALL_CHECK" = "unpacked" ] ; then
|
|
|
55
|
+ NGINX_EXTRAS_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'nginx-extras' 2>/dev/null | awk '{print $3}' || true)"
|
|
|
56
|
+ if [ "$NGINX_INSTALL_CHECK" = "installed" ] \
|
|
|
57
|
+ || [ "$NGINX_INSTALL_CHECK" = "unpacked" ] \
|
|
|
58
|
+ || [ "$NGINX_EXTRAS_INSTALL_CHECK" = "installed" ] \
|
|
|
59
|
+ || [ "$NGINX_EXTRAS_INSTALL_CHECK" = "unpacked" ] ; then
|
|
56
|
60
|
FORCE_NGINX="true"
|
|
57
|
61
|
fi
|
|
58
|
62
|
APACHE_INSTALL_CHECK="$(dpkg-query -f '${Status}' -W 'apache2' 2>/dev/null | awk '{print $3}' || true)"
|