Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/c1a3b142b038430c8e3dd1436fcc19bb58fcda53
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
1 deletions
@ -22,7 +22,7 @@ function update_container() {
alpine) pct exec " $container " -- ash -c "apk update && apk upgrade" ; ;
archlinux) pct exec " $container " -- bash -c "pacman -Syyu --noconfirm" ; ;
fedora | rocky | centos | alma) pct exec " $container " -- bash -c "dnf -y update && dnf -y upgrade" ; ;
ubuntu | debian | devuan) pct exec " $container " -- bash -c "apt-get update 2>/dev/null | grep 'packages.*upgraded'; apt list --upgradable && DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" dist-upgrade -y" ; ;
ubuntu | debian | devuan) pct exec " $container " -- bash -c "apt-get update 2>/dev/null | grep 'packages.*upgraded'; apt -get upgrade --dry-run && DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" dist-upgrade -y" ; ;
esac
}