From 484e22a253541608aca9d641174f82b00466cff5 Mon Sep 17 00:00:00 2001 From: Armin Co <armin.co@hs-bochum.de> Date: Sun, 25 Oct 2020 21:16:46 +0100 Subject: [PATCH] NoVNC config fix. --- config.sh | 4 ++-- setup.sh | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/config.sh b/config.sh index cf16276..96f91a6 100755 --- a/config.sh +++ b/config.sh @@ -11,7 +11,7 @@ SUB_DOMAINS="" MAIL=test@armin-co.de USE_JITSI="true" -USE_NO_VNC="true" +USE_NOVNC="true" USE_MUMBLE="false" # Git @@ -42,7 +42,7 @@ fi # noVNC - Screen sharing with VNC NOVNC_DIR=novnc NOVNC_URL="$GIT_URL$NOVNC_DIR".git -if [ "$USE_NO_VNC" == "true" ]; then +if [ "$USE_NOVNC" == "true" ]; then novnc_compose_file=" -f ./novnc/docker-compose.yml " DOCKER_COMPOSE_FILES+=$"$novnc_compose_file" fi diff --git a/setup.sh b/setup.sh index 24e28a2..c8b7838 100755 --- a/setup.sh +++ b/setup.sh @@ -59,7 +59,6 @@ echo "" echo "Starting configuration with cleaning up and pulling again." echo "" -./tools/stop_containers.sh remove_all_configs clone_repositories @@ -79,6 +78,5 @@ if [ "$USE_NOVNC" == "true" ];then git clone $NOVNC_URL fi -./tools/stop_containers.sh ./tools/update_containers.sh \ No newline at end of file -- GitLab