Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/a8b7a6e5adf0351a773062f6545cc8b96e000240?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
17 deletions
@ -1,6 +1,4 @@
#!/usr/bin/env bash -ex
set -euo pipefail
shopt -s inherit_errexit nullglob
YW = ` echo "\033[33m" `
BL = ` echo "\033[36m" `
RD = ` echo "\033[01;31m" `
@ -46,15 +44,12 @@ function msg_ok() {
echo -e " ${ BFR } ${ CM } ${ GN } ${ msg } ${ CL } "
}
cd /opt/uptime-kuma
if which systemctl 2> /dev/null > /dev/null; then
msg_info "Stopping Uptime Kuma"
sudo systemctl stop uptime-kuma & >/dev/null
msg_ok "Stopped Uptime Kuma"
else
echo "Skipped stopping Uptime Kuma, no systemctl found"
fi
msg_info "Stopping Uptime Kuma"
sudo systemctl stop uptime-kuma & >/dev/null
msg_ok "Stopped Uptime Kuma"
cd /opt/uptime-kuma
msg_info "Updating"
git fetch
@ -66,12 +61,8 @@ msg_info "Installing Dependencies"
npm ci
msg_ok "Installed Dependencies"
if which systemctl 2> /dev/null > /dev/null; then
msg_info "Starting Uptime Kuma"
sudo systemctl start uptime-kuma & >/dev/null
msg_ok "Started Uptime Kuma"
else
echo "Skipped starting Uptime Kuma, no systemctl found"
fi
msg_info "Starting Uptime Kuma"
sudo systemctl start uptime-kuma & >/dev/null
msg_ok "Started Uptime Kuma"
msg_ok "Done!"