Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/f24a53fcf615f0a25e421a602ca8dc046797e140?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
17 additions and
3 deletions
@ -1,7 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
#https://community.ui.com/questions/UniFi-Installation-Scripts-or-UniFi-Easy-Update-Script-or-UniFi-Lets-Encrypt-or-UniFi-Easy-Encrypt-/ccbc7530-dd61-40a7-82ec-22b17f027776
#https://community.ui.com/questions/UniFi-Installation-Scripts-or-UniFi-Easy-Update-Script-or-UniFi-Lets-Encrypt-or-UniFi-Easy-Encrypt-/ccbc7530-dd61-40a7-82ec-22b17f027776
set -euo pipefail
shopt -s inherit_errexit nullglob
YW = ` echo "\033[33m" `
YW = ` echo "\033[33m" `
RD = ` echo "\033[01;31m" `
RD = ` echo "\033[01;31m" `
BL = ` echo "\033[36m" `
BL = ` echo "\033[36m" `
@ -14,6 +12,22 @@ CM="${GN}✓${CL}"
CROSS = " ${ RD } ✗ ${ CL } "
CROSS = " ${ RD } ✗ ${ CL } "
BFR = "\\r\\033[K"
BFR = "\\r\\033[K"
HOLD = "-"
HOLD = "-"
set -o errexit
set -o errtrace
set -o nounset
set -o pipefail
shopt -s expand_aliases
alias die = 'EXIT=$? LINE=$LINENO error_exit'
trap die ERR
function error_exit( ) {
trap - ERR
local reason = "Unknown failure occured."
local msg = " ${ 1 :- $reason } "
local flag = " ${ RD } ‼ ERROR ${ CL } $EXIT @ $LINE "
echo -e " $flag $msg " 1>& 2
exit $EXIT
}
function msg_info( ) {
function msg_info( ) {
local msg = " $1 "
local msg = " $1 "