Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/e606148bad255628b67dac0c34dbd7b8e52109d9?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
0 deletions
@ -6,7 +6,10 @@ set -o nounset
set -o pipefail
set -o pipefail
shopt -s expand_aliases
shopt -s expand_aliases
alias die = 'EXIT=$? LINE=$LINENO error_exit'
alias die = 'EXIT=$? LINE=$LINENO error_exit'
CROSS = '\033[1;31m\xE2\x9D\x8C\033[0m'
CHECKMARK = '\033[0;32m\xE2\x9C\x94\033[0m'
CHECKMARK = '\033[0;32m\xE2\x9C\x94\033[0m'
RETRY_NUM = 5
RETRY_EVERY = 3
trap die ERR
trap die ERR
trap 'die "Script interrupted."' INT
trap 'die "Script interrupted."' INT
@ -26,6 +29,17 @@ function msg() {
echo -e " ${ CHECKMARK } \e[1;92m Setting up Container OS... \e[0m "
echo -e " ${ CHECKMARK } \e[1;92m Setting up Container OS... \e[0m "
sed -i " / $LANG / s/\(^# \)// " /etc/locale.gen
sed -i " / $LANG / s/\(^# \)// " /etc/locale.gen
locale-gen >/dev/null
locale-gen >/dev/null
while [ " $( hostname -I) " = "" ] ; do
1>& 2 echo -e " ${ CROSS } \e[1;31m No Network: \e[0m $( date) "
sleep $RETRY_EVERY
( ( NUM--) )
if [ $NUM -eq 0 ]
then
1>& 2 echo -e " ${ CROSS } \e[1;31m No Network After $RETRY_NUM Tries \e[0m "
exit 1
fi
done
echo -e " ${ CHECKMARK } \e[1;92m Network Connected: \e[0m $( hostname -I) "
echo -e " ${ CHECKMARK } \e[1;92m Updating Container OS... \e[0m "
echo -e " ${ CHECKMARK } \e[1;92m Updating Container OS... \e[0m "
apt update & >/dev/null
apt update & >/dev/null