Browse Source

Updates nginx detection during configuration.

master
damencho 10 years ago
parent
commit
3289f6f68e
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      debian/jitsi-meet.postinst

+ 1
- 3
debian/jitsi-meet.postinst View File

@@ -47,9 +47,7 @@ case "$1" in
47 47
         db_set jitsi-meet/jvb-hostname $JVB_HOSTNAME
48 48
 
49 49
         NGINX_INSTALL_CHECK="$(dpkg-query -W -f '${PackageSpec}:${Status}\n' nginx 2>&1 | grep -v "ok installed" || :)"
50
-        if [ -n "${NGINX_INSTALL_CHECK}" ]; then
51
-            FORCE_NGINX="false"
52
-        else
50
+        if [ -z "${NGINX_INSTALL_CHECK}" ]; then
53 51
             FORCE_NGINX="true"
54 52
         fi
55 53
 

Loading…
Cancel
Save