mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-04-18 00:12:17 +00:00
* fix(core): remove unused TEMP_DIR mktemp leak in build_container The build_container() function created a temp directory via mktemp -d and pushd into it, but never popd or rm -rf. The directory was not used for anything — FUNCTIONS_FILE_PATH is downloaded into a variable, not a file. Remove the mktemp -d and pushd entirely to eliminate the leak. * fix(sonarqube): clean up temp file after zip extraction The SonarQube update function (ct/sonarqube.sh) never deleted the downloaded zip file (~200-500 MB) from /tmp after extraction. On LXC containers with 4-8 GB disks, this accumulates with every update and can eventually fill the disk. Also add explicit cleanup in the install script instead of relying solely on cleanup_lxc() pattern matching.
75 lines
2.2 KiB
Bash
75 lines
2.2 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: prop4n
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://docs.sonarsource.com/sonarqube-server
|
|
|
|
APP="SonarQube"
|
|
var_tags="${var_tags:-automation}"
|
|
var_cpu="${var_cpu:-4}"
|
|
var_ram="${var_ram:-6144}"
|
|
var_disk="${var_disk:-25}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
if [[ ! -d /opt/sonarqube ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
if check_for_gh_release "sonarqube" "SonarSource/sonarqube"; then
|
|
msg_info "Stopping Service"
|
|
systemctl stop sonarqube
|
|
msg_ok "Stopped Service"
|
|
|
|
msg_info "Creating Backup"
|
|
BACKUP_DIR="/opt/sonarqube-backup"
|
|
mv /opt/sonarqube ${BACKUP_DIR}
|
|
msg_ok "Created Backup"
|
|
|
|
msg_info "Updating SonarQube"
|
|
temp_file=$(mktemp)
|
|
RELEASE=$(get_latest_github_release "SonarSource/sonarqube")
|
|
curl -fsSL "https://binaries.sonarsource.com/Distribution/sonarqube/sonarqube-${RELEASE}.zip" -o $temp_file
|
|
unzip -q "$temp_file" -d /opt
|
|
rm -f "$temp_file"
|
|
mv /opt/sonarqube-${RELEASE} /opt/sonarqube
|
|
echo "${RELEASE}" > ~/.sonarqube
|
|
msg_ok "Updated SonarQube"
|
|
|
|
msg_info "Restoring Backup"
|
|
cp -rp ${BACKUP_DIR}/data/ /opt/sonarqube/data/
|
|
cp -rp ${BACKUP_DIR}/extensions/ /opt/sonarqube/extensions/
|
|
cp -p ${BACKUP_DIR}/conf/sonar.properties /opt/sonarqube/conf/sonar.properties
|
|
rm -rf ${BACKUP_DIR}
|
|
chown -R sonarqube:sonarqube /opt/sonarqube
|
|
msg_ok "Restored Backup"
|
|
|
|
msg_info "Starting Service"
|
|
systemctl start sonarqube
|
|
msg_ok "Service Started"
|
|
msg_ok "Updated successfully!"
|
|
fi
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed successfully!\n"
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9000${CL}"
|