From bc024b08c116098c466c72adf8d80171fd9ee6d3 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Thu, 14 Nov 2024 02:20:28 +0100 Subject: [PATCH] Fix provision gui problem --- component-installer/provision_oggui.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/component-installer/provision_oggui.sh b/component-installer/provision_oggui.sh index 7aba4d8..7648afb 100644 --- a/component-installer/provision_oggui.sh +++ b/component-installer/provision_oggui.sh @@ -8,10 +8,10 @@ ENV_FILE=$ENV_DIR/.env mkdir -p $ENV_DIR # Comprobar si ya se ha instalado ogCore -#if [ -f /opt/opengnsys/ogGui/installer/.deployed ]; then -# echo "ogCore ya instalado" -# exit 0 -#fi +if [ -f /opt/opengnsys/ogGui/installer/.deployed ]; then + echo "ogCore ya instalado" + exit 0 +fi # Sacar la IP del ogCore de la configuración ogcore_ip=$(jq -r '.ogcore_ip' /opt/opengnsys/ogGui/installer/config.json)