Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/ea623d17088eb51588c37c9a0913655b3a824d48?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
8 deletions
@ -137,13 +137,13 @@ while [ $opt != '' ]
1) clear;
header_info;
option_picked "Using fuse-overlayfs Storage Driver" ;
S D= " "
S TORAGE_DRIVER= "fuse "
break;
; ;
2) clear;
header_info;
option_picked "Using overlay2fs Storage Driver" ;
S D= " # "
S TORAGE_ DRIVER = " "
break;
; ;
@ -206,7 +206,7 @@ function cleanup() {
rm -rf $TEMP_DIR
}
if [ " $IM " = = "1" ] ; then
FEATURES = "nesting=1,keyctl=1 ,mknod=1 "
FEATURES = "nesting=1,keyctl=1 "
else
FEATURES = "nesting=1"
fi
@ -231,8 +231,8 @@ export PCT_OPTIONS="
bash -c " $( wget -qLO - https://raw.githubusercontent.com/tteck/Proxmox/main/ct/create_lxc.sh) " || exit
STORAGE_TYPE = $( pvesm status -storage $( pct config $CTID | grep rootfs | awk -F ":" '{print $2}' ) | awk 'NR>1 {print $2}' )
if [ " $STORAGE_TYPE " = = "zfspool" ] ; then
${ SD } wget -qL -O fuse-overlayfs https://github.com/containers/fuse-overlayfs/releases/download/v1.8.2/fuse-overlayfs-x86_64
if [ " $STORAGE_TYPE " = = "zfspool" ] && [ " $STORAGE_DRIVER " = = "fuse" ] ; then
wget -qL -O fuse-overlayfs https://github.com/containers/fuse-overlayfs/releases/download/v1.8.2/fuse-overlayfs-x86_64
warn "Some addons may not work due to ZFS not supporting 'fallocate'."
fi
LXC_CONFIG = /etc/pve/lxc/${ CTID } .conf
@ -243,9 +243,9 @@ EOF
echo -en " ${ GN } Starting LXC Container... "
pct start $CTID
if [ " $STORAGE_TYPE " = = "zfspool" ] ; then
${ SD } pct push $CTID fuse-overlayfs /usr/local/bin/fuse-overlayfs -perms 755
${ SD } info " ${ BL } Using fuse-overlayfs. ${ CL } "
if [ " $STORAGE_TYPE " = = "zfspool" ] && [ " $STORAGE_DRIVER " = = "fuse" ] ; then
pct push $CTID fuse-overlayfs /usr/local/bin/fuse-overlayfs -perms 755
info " ${ BL } Using fuse-overlayfs. ${ CL } "
fi
echo -e " ${ CM } ${ CL } \r "