Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/d5bfd4e833d6ed378944394b0233257e29f3ab15?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update homeassistant-v3.sh

pull/152/head
tteckster 3 years ago committed by GitHub
parent bdf48425ac
commit d5bfd4e833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -116,8 +116,12 @@ header_info
echo -e "${GN}Using ID ${BGN}$CT_ID${CL}"
echo -e "${YW}Enter CT Name (no spaces), or Press [ENTER] for Default: $APP "
read CT_NAME
if [ -z $CT_NAME ]; then CT_NAME=$NSAPP; HN=$(echo ${CT_NAME,,} | tr -d ' '); fi
if [ $CT_NAME ]; then HN=$(echo ${CT_NAME,,} | tr -d ' '); fi
if [ -z $CT_NAME ]; then
CT_NAME=$NSAPP;
HN=$NSAPP
else
HN=$(echo ${CT_NAME,,} | tr -d ' ')
fi
echo -en "${GN}Set CT Name To ${BL}$CT_NAME${CL}"
echo -e " ${CM}${CL} \r"
sleep 1
@ -131,7 +135,7 @@ header_info
echo -e "${YW}Enter a Disk Size, or Press [ENTER] for Default: 16Gb "
read SIZEDISK
if [ -z $SIZEDISK ]; then SIZEDISK="16"; fi;
if ! [[ $SIZEDISK =~ $INTEGER ]] ; then echo "ERROR! SIZEDISK MUST HAVE INTEGER NUMBER!"; exit; fi;
if ! [[ $SIZEDISK =~ $INTEGER ]] ; then echo "ERROR! DISK SIZE MUST HAVE INTEGER NUMBER!"; exit; fi;
echo -en "${GN}Set Disk Size To ${BL}$SIZEDISK${CL}"
echo -e " ${CM}${CL} \r"
sleep 1

Loading…
Cancel
Save

Powered by BW's shoe-string budget.