Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/9cca4a56ce1d645fe4a4f966eb1a3ae1e5f53680?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
4 deletions
@ -70,8 +70,8 @@ if [[ $PVE != 1 ]]; then
fi
fi
}
}
function default_settings( ) {
function default_settings( ) {
echo -e " ${ DGN } Using Container Type: ${ BGN } Unprivileged${ CL } ${ RD } NO DEVICE PASSTHROUGH ${ CL } "
echo -e " ${ DGN } Using Container Type: ${ BGN } Privileged ${ CL } "
CT_TYPE = " 1 "
CT_TYPE = " 0 "
echo -e " ${ DGN } Using Root Password: ${ BGN } Automatic Login ${ CL } "
echo -e " ${ DGN } Using Root Password: ${ BGN } Automatic Login ${ CL } "
PW = ""
PW = ""
echo -e " ${ DGN } Using Container ID: ${ BGN } $NEXTID ${ CL } "
echo -e " ${ DGN } Using Container ID: ${ BGN } $NEXTID ${ CL } "
@ -98,8 +98,8 @@ function default_settings() {
}
}
function advanced_settings( ) {
function advanced_settings( ) {
CT_TYPE = $( whiptail --title "CONTAINER TYPE" --radiolist "Choose Type" 8 58 2 \
CT_TYPE = $( whiptail --title "CONTAINER TYPE" --radiolist "Choose Type" 8 58 2 \
"1" "Unprivileged" ON \
"1" "Unprivileged" OFF \
"0" "Privileged" OFF \
"0" "Privileged" ON \
3>& 1 1>& 2 2>& 3)
3>& 1 1>& 2 2>& 3)
exitstatus = $?
exitstatus = $?
if [ $exitstatus = 0 ] ; then
if [ $exitstatus = 0 ] ; then