74 lines
1.8 KiB
Bash
74 lines
1.8 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
SPINNER_PID=0
|
|
|
|
# Copyright (c) 2021-2025 community-scripts ORG
|
|
# Author: [YourUserName]
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/plexguide/Huntarr.io
|
|
|
|
# Import Functions und Setup
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
APPLICATION="huntarr"
|
|
|
|
# Installing Dependencies
|
|
msg_info "Installing Dependencies"
|
|
$STD apt-get install -y \
|
|
curl \
|
|
tar \
|
|
unzip \
|
|
jq
|
|
msg_ok "Installed Dependencies"
|
|
|
|
# Setup App
|
|
msg_info "Setup ${APPLICATION}"
|
|
LATEST_JSON=$(curl -fsSL https://api.github.com/repos/plexguide/Huntarr.io/releases/latest)
|
|
RELEASE=$(echo "$LATEST_JSON" | jq -r '.tag_name')
|
|
DOWNLOAD_URL=$(echo "$LATEST_JSON" | jq -r '.assets[] | select(.name | test("linux_amd64\\.tar\\.gz")) | .browser_download_url')
|
|
if [[ -z "$DOWNLOAD_URL" ]]; then
|
|
msg_error "Failed to parse download URL"
|
|
exit 1
|
|
fi
|
|
TAR_FILE=$(basename "$DOWNLOAD_URL")
|
|
mkdir -p /opt/${APPLICATION}
|
|
curl -fsSL -o "/opt/${APPLICATION}/${TAR_FILE}" "$DOWNLOAD_URL"
|
|
tar -xzf "/opt/${APPLICATION}/${TAR_FILE}" -C /opt/${APPLICATION}
|
|
chmod +x /opt/${APPLICATION}/${APPLICATION}
|
|
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
|
|
msg_ok "Setup ${APPLICATION}"
|
|
|
|
# Creating Service (if needed)
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/${APPLICATION}.service
|
|
[Unit]
|
|
Description=${APPLICATION} Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Environment=TZ=America/New_York
|
|
ExecStart=/opt/${APPLICATION}/${APPLICATION} --config /opt/${APPLICATION} --port 9705
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now ${APPLICATION}
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
|
|
# Cleanup
|
|
msg_info "Cleaning up"
|
|
rm -f "/opt/${APPLICATION}/${TAR_FILE}"
|
|
$STD apt-get -y autoremove
|
|
$STD apt-get -y autoclean
|
|
msg_ok "Cleaned"
|