From ca9d0ab99672c89b6404fef9669f21564d8b3066 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Wed, 1 Oct 2025 00:36:03 +0200 Subject: [PATCH] Update install/sonarqube-install.sh --- install/sonarqube-install.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/install/sonarqube-install.sh b/install/sonarqube-install.sh index 80b4e055..6d578f47 100644 --- a/install/sonarqube-install.sh +++ b/install/sonarqube-install.sh @@ -35,10 +35,6 @@ msg_info "Creating SonarQube User" useradd -r -m -U -d /opt/sonarqube -s /bin/bash sonarqube 2>/dev/null || true msg_info "Configuring SonarQube" -curl -fsSL -o /tmp/sonarqube.zip "https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-${RELEASE}.zip" -unzip -q /tmp/sonarqube.zip -d /tmp -cp -r /tmp/sonarqube-*/* /opt/sonarqube/ -rm -rf /tmp/sonarqube* chown -R sonarqube:sonarqube /opt/sonarqube chmod -R 755 /opt/sonarqube msg_ok "Installed SonarQube"