Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/b2124be08f82169cc2902ba047f2544fb76d62af?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
3 deletions
@ -52,11 +52,14 @@ function default_settings() {
function update_script( ) {
function update_script( ) {
header_info
header_info
if [ [ ! -d /var ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
if [ [ ! -f /etc/apt/sources.list.d/grafana.list ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
msg_info " Updating ${ APP } LXC "
msg_info " Updating ${ APP } "
apt-key del 4E40DDF6D76E284A4A6780E48C8C34C524098CB6
wget -q -O /usr/share/keyrings/grafana.key https://apt.grafana.com/gpg.key
echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main" | tee /etc/apt/sources.list.d/grafana.list
apt-get update & >/dev/null
apt-get update & >/dev/null
apt-get -y upgrade & >/dev/null
apt-get -y upgrade & >/dev/null
msg_ok " Updated ${ APP } LXC "
msg_ok " Updated ${ APP } "
msg_ok "Update Successfull"
msg_ok "Update Successfull"
exit
exit
}
}