From a023c139b8810571594ded07f6d734bffb3a823d Mon Sep 17 00:00:00 2001 From: turint Date: Fri, 29 Aug 2014 20:20:13 +0300 Subject: [PATCH] Fixes a typo. --- debian/jitsi-meet.postinst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/jitsi-meet.postinst b/debian/jitsi-meet.postinst index a9411cc9e..01ef3d869 100644 --- a/debian/jitsi-meet.postinst +++ b/debian/jitsi-meet.postinst @@ -40,10 +40,10 @@ case "$1" in # SSL for nginx db_get jitsi-meet/cert-choice CERT_CHOICE="$RET" - if [ "$CERT_CHOICE" == 'I want a generated self-signed certificate' ]; then + if [ "$CERT_CHOICE" = 'I want a generated self-signed certificate' ]; then # self-signed certificate is already in place for prosody : - elif [ "$CERT_CHOICE" == 'I have a certificate and will upload the files on the server' ]; then + elif [ "$CERT_CHOICE" = 'I have a certificate and will upload the files on the server' ]; then db_fset jitsi-meet/default-key "/etc/ssl/$JVB_HOSTNAME.key" db_get jitsi-meet/cert-path-key CERT_KEY="$RET"