fix git comments

This commit is contained in:
bilulib
2025-05-16 21:02:52 +02:00
parent caff858e4d
commit 700aa5b886
3 changed files with 10 additions and 24 deletions

View File

@ -5,7 +5,6 @@ source <(curl -fsSL https://git.bila.li/Proxmox/proxmox-ve-install-scripts/raw/b
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: [SOURCE_URL]
# App Default Values
APP="Huntarr"
var_tags="${var_tags:-arr}"
var_cpu="${var_cpu:-2}"
@ -25,41 +24,32 @@ function update_script() {
check_container_storage
check_container_resources
# Check for Python app with hardcoded path
if [[ ! -f /opt/huntarr/main.py ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
# Crawling the new version and checking whether an update is required
RELEASE=$(curl -fsSL https://api.github.com/repos/plexguide/Huntarr.io/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3)}')
if [[ "${RELEASE}" != "$(cat /opt/huntarr_version.txt)" ]] || [[ ! -f /opt/huntarr_version.txt ]]; then
# Stopping Services
if [[ "${RELEASE}" != "$(cat /opt/"${APP}"_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
msg_info "Stopping $APP"
systemctl stop huntarr
msg_ok "Stopped $APP"
# Creating Backup - maintain only one backup file
msg_info "Creating Backup"
# Remove any existing backups
if ls /opt/${APP}_backup_*.tar.gz &>/dev/null; then
rm -f /opt/${APP}_backup_*.tar.gz
msg_info "Removed previous backup"
fi
# Create new backup
tar -czf "/opt/${APP}_backup_$(date +%F).tar.gz" /opt/huntarr
msg_ok "Backup Created"
# Execute Update for Python app
msg_info "Updating $APP to v${RELEASE}"
curl -fsSL -o "/opt/huntarr/${RELEASE}.zip" "https://github.com/plexguide/Huntarr.io/archive/refs/tags/${RELEASE}.zip"
unzip -q -o "/opt/huntarr/${RELEASE}.zip" -d /tmp
cp -rf "/tmp/Huntarr.io-${RELEASE}"/* /opt/huntarr/
# Update Python dependencies
msg_info "Updating Python dependencies"
cd /opt/huntarr || exit
# Check if requirements changed with md5sum
if [[ -f "/opt/huntarr/.requirements_checksum" ]]; then
CURRENT_CHECKSUM=$(md5sum requirements.txt | awk '{print $1}')
STORED_CHECKSUM=$(cat .requirements_checksum)
@ -72,31 +62,26 @@ function update_script() {
uv pip install -r requirements.txt --python /opt/huntarr/venv/bin/python
fi
else
# First time update - ensure UV is installed
if ! command -v uv &> /dev/null; then
if ! command -v uv &>/dev/null; then
msg_info "Installing UV package manager"
curl -LsSf https://astral.sh/uv/install.sh | sh
msg_ok "UV package manager installed"
fi
uv pip install -r requirements.txt --python /opt/huntarr/venv/bin/python
fi
# Store new checksum
md5sum requirements.txt | awk '{print $1}' >.requirements_checksum
msg_ok "Updated Python dependencies"
msg_ok "Updated $APP to v${RELEASE}"
# Starting Services
msg_info "Starting $APP"
systemctl start huntarr
msg_ok "Started $APP"
# Cleaning up
msg_info "Cleaning Up"
rm -f "/opt/huntarr/${RELEASE}.zip"
rm -rf "/tmp/Huntarr.io-${RELEASE}"
msg_ok "Cleanup Completed"
# Last Action
echo "${RELEASE}" >/opt/huntarr_version.txt
msg_ok "Update Successful"
else