From c373809b3cd95098f8fc594dfcedc78cb7e351a5 Mon Sep 17 00:00:00 2001 From: Orestis Tsakiridis Date: Fri, 7 Jul 2017 14:35:22 +0300 Subject: [PATCH] Fixes #2328 - config-rvd.sh if/then/else syntax bug --- .../as7-config-scripts/restcomm/autoconfig.d/config-rvd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restcomm/configuration/config-scripts/as7-config-scripts/restcomm/autoconfig.d/config-rvd.sh b/restcomm/configuration/config-scripts/as7-config-scripts/restcomm/autoconfig.d/config-rvd.sh index e3ff7593e9..c1274db6de 100755 --- a/restcomm/configuration/config-scripts/as7-config-scripts/restcomm/autoconfig.d/config-rvd.sh +++ b/restcomm/configuration/config-scripts/as7-config-scripts/restcomm/autoconfig.d/config-rvd.sh @@ -56,7 +56,7 @@ fi echo "Configuring RVD" -if [ "$RVD_VIDEO_SUPPORT" = true || "$RVD_VIDEO_SUPPORT" = TRUE || "$RVD_VIDEO_SUPPORT" = True ] ; then +if [[ "$RVD_VIDEO_SUPPORT" = true || "$RVD_VIDEO_SUPPORT" = TRUE || "$RVD_VIDEO_SUPPORT" = True ]] ; then updateVideoSupport true else updateVideoSupport false