fix git comments
This commit is contained in:
@ -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
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
# Source: [SOURCE_URL]
|
# Source: [SOURCE_URL]
|
||||||
|
|
||||||
# App Default Values
|
|
||||||
APP="Huntarr"
|
APP="Huntarr"
|
||||||
var_tags="${var_tags:-arr}"
|
var_tags="${var_tags:-arr}"
|
||||||
var_cpu="${var_cpu:-2}"
|
var_cpu="${var_cpu:-2}"
|
||||||
@ -25,41 +24,32 @@ function update_script() {
|
|||||||
check_container_storage
|
check_container_storage
|
||||||
check_container_resources
|
check_container_resources
|
||||||
|
|
||||||
# Check for Python app with hardcoded path
|
|
||||||
if [[ ! -f /opt/huntarr/main.py ]]; then
|
if [[ ! -f /opt/huntarr/main.py ]]; then
|
||||||
msg_error "No ${APP} Installation Found!"
|
msg_error "No ${APP} Installation Found!"
|
||||||
exit
|
exit
|
||||||
fi
|
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)}')
|
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
|
if [[ "${RELEASE}" != "$(cat /opt/"${APP}"_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
|
||||||
# Stopping Services
|
|
||||||
msg_info "Stopping $APP"
|
msg_info "Stopping $APP"
|
||||||
systemctl stop huntarr
|
systemctl stop huntarr
|
||||||
msg_ok "Stopped $APP"
|
msg_ok "Stopped $APP"
|
||||||
|
|
||||||
# Creating Backup - maintain only one backup file
|
|
||||||
msg_info "Creating Backup"
|
msg_info "Creating Backup"
|
||||||
# Remove any existing backups
|
|
||||||
if ls /opt/${APP}_backup_*.tar.gz &>/dev/null; then
|
if ls /opt/${APP}_backup_*.tar.gz &>/dev/null; then
|
||||||
rm -f /opt/${APP}_backup_*.tar.gz
|
rm -f /opt/${APP}_backup_*.tar.gz
|
||||||
msg_info "Removed previous backup"
|
msg_info "Removed previous backup"
|
||||||
fi
|
fi
|
||||||
# Create new backup
|
|
||||||
tar -czf "/opt/${APP}_backup_$(date +%F).tar.gz" /opt/huntarr
|
tar -czf "/opt/${APP}_backup_$(date +%F).tar.gz" /opt/huntarr
|
||||||
msg_ok "Backup Created"
|
msg_ok "Backup Created"
|
||||||
|
|
||||||
# Execute Update for Python app
|
|
||||||
msg_info "Updating $APP to v${RELEASE}"
|
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"
|
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
|
unzip -q -o "/opt/huntarr/${RELEASE}.zip" -d /tmp
|
||||||
cp -rf "/tmp/Huntarr.io-${RELEASE}"/* /opt/huntarr/
|
cp -rf "/tmp/Huntarr.io-${RELEASE}"/* /opt/huntarr/
|
||||||
|
|
||||||
# Update Python dependencies
|
|
||||||
msg_info "Updating Python dependencies"
|
msg_info "Updating Python dependencies"
|
||||||
cd /opt/huntarr || exit
|
cd /opt/huntarr || exit
|
||||||
# Check if requirements changed with md5sum
|
|
||||||
if [[ -f "/opt/huntarr/.requirements_checksum" ]]; then
|
if [[ -f "/opt/huntarr/.requirements_checksum" ]]; then
|
||||||
CURRENT_CHECKSUM=$(md5sum requirements.txt | awk '{print $1}')
|
CURRENT_CHECKSUM=$(md5sum requirements.txt | awk '{print $1}')
|
||||||
STORED_CHECKSUM=$(cat .requirements_checksum)
|
STORED_CHECKSUM=$(cat .requirements_checksum)
|
||||||
@ -72,7 +62,6 @@ function update_script() {
|
|||||||
uv pip install -r requirements.txt --python /opt/huntarr/venv/bin/python
|
uv pip install -r requirements.txt --python /opt/huntarr/venv/bin/python
|
||||||
fi
|
fi
|
||||||
else
|
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"
|
msg_info "Installing UV package manager"
|
||||||
curl -LsSf https://astral.sh/uv/install.sh | sh
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
@ -80,23 +69,19 @@ function update_script() {
|
|||||||
fi
|
fi
|
||||||
uv pip install -r requirements.txt --python /opt/huntarr/venv/bin/python
|
uv pip install -r requirements.txt --python /opt/huntarr/venv/bin/python
|
||||||
fi
|
fi
|
||||||
# Store new checksum
|
|
||||||
md5sum requirements.txt | awk '{print $1}' >.requirements_checksum
|
md5sum requirements.txt | awk '{print $1}' >.requirements_checksum
|
||||||
msg_ok "Updated Python dependencies"
|
msg_ok "Updated Python dependencies"
|
||||||
msg_ok "Updated $APP to v${RELEASE}"
|
msg_ok "Updated $APP to v${RELEASE}"
|
||||||
|
|
||||||
# Starting Services
|
|
||||||
msg_info "Starting $APP"
|
msg_info "Starting $APP"
|
||||||
systemctl start huntarr
|
systemctl start huntarr
|
||||||
msg_ok "Started $APP"
|
msg_ok "Started $APP"
|
||||||
|
|
||||||
# Cleaning up
|
|
||||||
msg_info "Cleaning Up"
|
msg_info "Cleaning Up"
|
||||||
rm -f "/opt/huntarr/${RELEASE}.zip"
|
rm -f "/opt/huntarr/${RELEASE}.zip"
|
||||||
rm -rf "/tmp/Huntarr.io-${RELEASE}"
|
rm -rf "/tmp/Huntarr.io-${RELEASE}"
|
||||||
msg_ok "Cleanup Completed"
|
msg_ok "Cleanup Completed"
|
||||||
|
|
||||||
# Last Action
|
|
||||||
echo "${RELEASE}" >/opt/huntarr_version.txt
|
echo "${RELEASE}" >/opt/huntarr_version.txt
|
||||||
msg_ok "Update Successful"
|
msg_ok "Update Successful"
|
||||||
else
|
else
|
||||||
|
|||||||
0
edfafdsaf.sh
Normal file
0
edfafdsaf.sh
Normal file
@ -5,7 +5,6 @@
|
|||||||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
# Source: https://github.com/plexguide/Huntarr.io
|
# Source: https://github.com/plexguide/Huntarr.io
|
||||||
|
|
||||||
# Import Functions und Setup
|
|
||||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||||
color
|
color
|
||||||
verb_ip6
|
verb_ip6
|
||||||
@ -18,11 +17,15 @@ APPLICATION="huntarr"
|
|||||||
REPO_NAME="Huntarr.io"
|
REPO_NAME="Huntarr.io"
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
msg_info "Installing Dependencies"
|
||||||
$STD apt-get install -y \
|
$STD apt-get install -y
|
||||||
jq \
|
jq \
|
||||||
|
msg_ok "Installed System Dependencies"
|
||||||
|
|
||||||
|
msg_info "Installing Python"
|
||||||
|
$STD apt-get install -y \
|
||||||
python3 \
|
python3 \
|
||||||
python3-venv
|
python3-venv
|
||||||
msg_ok "Installed System Dependencies"
|
msg_ok "Setting up Python"
|
||||||
|
|
||||||
msg_info "Setting up UV package installer"
|
msg_info "Setting up UV package installer"
|
||||||
curl -LsSf https://astral.sh/uv/install.sh | sh
|
curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
@ -37,7 +40,6 @@ unzip -q "${RELEASE}.zip"
|
|||||||
mv "${REPO_NAME}-${RELEASE}/" "/opt/${APPLICATION}"
|
mv "${REPO_NAME}-${RELEASE}/" "/opt/${APPLICATION}"
|
||||||
|
|
||||||
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
|
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
|
||||||
msg_ok "Setup ${APPLICATION}"
|
|
||||||
|
|
||||||
msg_info "Setting up Python Environment"
|
msg_info "Setting up Python Environment"
|
||||||
$STD uv venv /opt/${APPLICATION}/venv
|
$STD uv venv /opt/${APPLICATION}/venv
|
||||||
@ -46,18 +48,17 @@ msg_ok "Created Python Virtual Environment"
|
|||||||
msg_info "Installing Python Dependencies"
|
msg_info "Installing Python Dependencies"
|
||||||
$STD uv pip install --python /opt/${APPLICATION}/venv/bin/python -r /opt/${APPLICATION}/requirements.txt
|
$STD uv pip install --python /opt/${APPLICATION}/venv/bin/python -r /opt/${APPLICATION}/requirements.txt
|
||||||
msg_ok "Installed Python Dependencies"
|
msg_ok "Installed Python Dependencies"
|
||||||
|
msg_ok "Setup ${APPLICATION}"
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
cat <<EOF >/etc/systemd/system/${APPLICATION}.service
|
cat <<EOF >/etc/systemd/system/${APPLICATION}.service
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Huntarr Service
|
Description=Huntarr Service
|
||||||
After=network.target
|
After=network.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
WorkingDirectory=/opt/${APPLICATION}
|
WorkingDirectory=/opt/${APPLICATION}
|
||||||
ExecStart=/opt/${APPLICATION}/venv/bin/python /opt/${APPLICATION}/main.py
|
ExecStart=/opt/${APPLICATION}/venv/bin/python /opt/${APPLICATION}/main.py
|
||||||
Restart=always
|
Restart=always
|
||||||
|
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
EOF
|
EOF
|
||||||
|
|||||||
Reference in New Issue
Block a user