mirror of https://github.com/tteck/Proxmox.git
48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2024 tteck
|
|
# Author: tteck
|
|
# Co-Author: havardthom
|
|
# License: MIT
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
|
|
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt-get install -y curl
|
|
$STD apt-get install -y sudo
|
|
$STD apt-get install -y mc
|
|
$STD apt-get install -y par2
|
|
$STD apt-get install -y p7zip-full
|
|
cat <<EOF >/etc/apt/sources.list.d/non-free.list
|
|
deb http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware
|
|
EOF
|
|
$STD apt-get update
|
|
$STD apt-get install -y unrar
|
|
rm /etc/apt/sources.list.d/non-free.list
|
|
msg_ok "Installed Dependencies"
|
|
|
|
msg_info "Installing NZBGet"
|
|
RELEASE=$(curl -s https://api.github.com/repos/nzbgetcom/nzbget/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
|
|
wget -q https://github.com/nzbgetcom/nzbget/releases/download/v$RELEASE/nzbget-$RELEASE-amd64.deb
|
|
$STD dpkg -i nzbget-${RELEASE}-amd64.deb
|
|
sed -i 's/SevenZipCmd=7zz/SevenZipCmd=7z/g' /var/lib/nzbget/nzbget.conf
|
|
systemctl restart nzbget
|
|
rm -rf nzbget-${RELEASE}-amd64.deb
|
|
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
|
|
msg_ok "Installed NZBGet"
|
|
|
|
motd_ssh
|
|
customize
|
|
|
|
msg_info "Cleaning up"
|
|
$STD apt-get -y autoremove
|
|
$STD apt-get -y autoclean
|
|
msg_ok "Cleaned"
|