Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/461a737b98c53b918bcb9768e089e0c74c643140?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
3 deletions
@ -17,7 +17,7 @@ function header_info {
EOF
EOF
}
}
set -e
set -eEuo pipefail
YW = $( echo "\033[33m" )
YW = $( echo "\033[33m" )
BL = $( echo "\033[36m" )
BL = $( echo "\033[36m" )
RD = $( echo "\033[01;31m" )
RD = $( echo "\033[01;31m" )
@ -26,8 +26,10 @@ GN=$(echo "\033[1;92m")
CL = $( echo "\033[m" )
CL = $( echo "\033[m" )
header_info
header_info
echo "Loading..."
echo "Loading..."
whiptail --backtitle "Proxmox VE Helper Scripts" --title "Proxmox VE LXC Updater" --yesno "This Will Update LXC Containers. Proceed?" 10 58 || exit
whiptail --backtitle "Proxmox VE Helper Scripts" --title "Proxmox VE LXC Updater" --yesno "This Will Update LXC Containers. Proceed?" 10 58 || clear; exit
NODE = $( hostname)
NODE = $( hostname)
CTID_MENU = ( )
MSG_MAX_LENGTH = 0
while read -r TAG ITEM; do
while read -r TAG ITEM; do
OFFSET = 2
OFFSET = 2
( ( ${# ITEM } + OFFSET > MSG_MAX_LENGTH) ) && MSG_MAX_LENGTH = ${# ITEM } +OFFSET
( ( ${# ITEM } + OFFSET > MSG_MAX_LENGTH) ) && MSG_MAX_LENGTH = ${# ITEM } +OFFSET
@ -35,7 +37,7 @@ while read -r TAG ITEM; do
done < <( pct list | awk 'NR>1' )
done < <( pct list | awk 'NR>1' )
excluded_containers = $( whiptail --backtitle "Proxmox VE Helper Scripts" --title " Containers on $NODE " --checklist \
excluded_containers = $( whiptail --backtitle "Proxmox VE Helper Scripts" --title " Containers on $NODE " --checklist \
"\nSelect containers to skip from updates:\n" \
"\nSelect containers to skip from updates:\n" \
16 $(( MSG_MAX_LENGTH + 23 )) 6 " ${ CTID_MENU [@] } " 3>& 1 1>& 2 2>& 3 | tr -d '"' ) || exit
16 $(( MSG_MAX_LENGTH + 23 )) 6 " ${ CTID_MENU [@] } " 3>& 1 1>& 2 2>& 3 | tr -d '"' ) || clear; exit
function update_container( ) {
function update_container( ) {
container = $1
container = $1