Revert sonarqube to old install method

This commit is contained in:
tremor021 2025-10-02 13:52:34 +02:00
parent 4b61d26b53
commit b2f7069672
2 changed files with 46 additions and 36 deletions

View File

@ -38,7 +38,12 @@ function update_script() {
mv /opt/sonarqube ${BACKUP_DIR}
msg_ok "Backup created"
fetch_and_deploy_gh_release "sonarqube" "SonarSource/sonarqube" "tarball"
msg_info "Installing sonarqube"
RELEASE=$(curl -fsSL https://api.github.com/repos/SonarSource/sonarqube/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
curl -fsSL "https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-${RELEASE}.zip" -o $temp_file
unzip -q "$temp_file" -d /opt
mv /opt/sonarqube-* /opt/sonarqube
msg_ok "Installed sonarqube"
msg_info "Restoring backup"
cp -rp ${BACKUP_DIR}/data/ /opt/sonarqube/data/

View File

@ -14,7 +14,6 @@ update_os
JAVA_VERSION="21" setup_java
PG_VERSION="17" setup_postgresql
fetch_and_deploy_gh_release "sonarqube" "SonarSource/sonarqube" "tarball"
msg_info "Installing Postgresql"
DB_NAME="sonarqube"
@ -31,6 +30,11 @@ $STD sudo -u postgres psql -c "CREATE DATABASE $DB_NAME OWNER $DB_USER;"
msg_ok "Installed PostgreSQL"
msg_info "Configuring SonarQube"
temp_file=$(mktemp)
RELEASE=$(curl -fsSL https://api.github.com/repos/SonarSource/sonarqube/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
curl -fsSL "https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-${RELEASE}.zip" -o $temp_file
unzip -q "$temp_file" -d /opt
mv /opt/sonarqube-* /opt/sonarqube
$STD useradd -r -m -U -d /opt/sonarqube -s /bin/bash sonarqube
chown -R sonarqube:sonarqube /opt/sonarqube
chmod -R 755 /opt/sonarqube
@ -43,6 +47,7 @@ sonar.web.host=0.0.0.0
sonar.web.port=9000
EOF
chmod +x /opt/sonarqube/bin/linux-x86-64/sonar.sh
echo ${RELEASE} >>~/.sonarqube
msg_ok "Configured SonarQube"
msg_info "Creating Service"