Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/fea40f6526f97d00e1559782e0af0be27c34caba?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -37,7 +37,7 @@ HOLD="-"
CM = " ${ GN } ✓ ${ CL } "
CM = " ${ GN } ✓ ${ CL } "
CROSS = " ${ RD } ✗ ${ CL } "
CROSS = " ${ RD } ✗ ${ CL } "
THIN = "discard=on,ssd=1,"
THIN = "discard=on,ssd=1,"
set -e
set -euo pipefail
trap 'error_handler $LINENO "$BASH_COMMAND"' ERR
trap 'error_handler $LINENO "$BASH_COMMAND"' ERR
trap cleanup EXIT
trap cleanup EXIT
function error_handler( ) {
function error_handler( ) {
@ -423,8 +423,8 @@ msg_ok "Extracted KVM Disk Image"
msg_info "Creating HAOS VM"
msg_info "Creating HAOS VM"
qm create $VMID -agent 1${ MACHINE } -tablet 0 -localtime 1 -bios ovmf${ CPU_TYPE } -cores $CORE_COUNT -memory $RAM_SIZE \
qm create $VMID -agent 1${ MACHINE } -tablet 0 -localtime 1 -bios ovmf${ CPU_TYPE } -cores $CORE_COUNT -memory $RAM_SIZE \
-name $HN -tags proxmox-helper-scripts -net0 virtio,bridge= $BRG ,macaddr= $MAC $VLAN $MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci
-name $HN -tags proxmox-helper-scripts -net0 virtio,bridge= $BRG ,macaddr= $MAC $VLAN $MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci
lvcreate -L 4G -n vm-$VMID -disk-1 $NODE 1>& /dev/null
lvcreate -L 4G -n vm-${ VMID } -disk-1 ${ NODE } 1>& /dev/null
qm importdisk $VMID ${ FILE %.* } $STORAGE ${ DISK_IMPORT :- } 1>& /dev/null
qm importdisk $VMID ${ FILE %.* } ${ STORAGE } ${ DISK_IMPORT :- } 1>& /dev/null
qm set $VMID \
qm set $VMID \
-efidisk0 ${ STORAGE } :vm-${ VMID } -disk-1,efitype= 4m \
-efidisk0 ${ STORAGE } :vm-${ VMID } -disk-1,efitype= 4m \
-scsi0 " ${ DISK_REF } , ${ DISK_CACHE } ${ THIN } size=32G " \
-scsi0 " ${ DISK_REF } , ${ DISK_CACHE } ${ THIN } size=32G " \