Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/c926ed1fbcf20a27ca80120a16c4a9767bd5ee40?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -23,8 +23,8 @@ msg_info "Installing Prometheus"
RELEASE = $( curl -s https://api.github.com/repos/prometheus/prometheus/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }' )
RELEASE = $( curl -s https://api.github.com/repos/prometheus/prometheus/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }' )
mkdir -p /etc/prometheus
mkdir -p /etc/prometheus
mkdir -p /var/lib/prometheus
mkdir -p /var/lib/prometheus
$STD wget https://github.com/prometheus/prometheus/releases/download/v${ RELEASE } /prometheus-${ RELEASE } .linux-amd64.tar.gz
wget -q https://github.com/prometheus/prometheus/releases/download/v${ RELEASE } /prometheus-${ RELEASE } .linux-amd64.tar.gz
$STD tar -xv f prometheus-${ RELEASE } .linux-amd64.tar.gz
tar -xf prometheus-${ RELEASE } .linux-amd64.tar.gz
cd prometheus-${ RELEASE } .linux-amd64
cd prometheus-${ RELEASE } .linux-amd64
mv prometheus promtool /usr/local/bin/
mv prometheus promtool /usr/local/bin/
mv consoles/ console_libraries/ /etc/prometheus/
mv consoles/ console_libraries/ /etc/prometheus/
@ -51,7 +51,7 @@ ExecStart=/usr/local/bin/prometheus \
[ Install]
[ Install]
WantedBy = multi-user.target" > $service_path
WantedBy = multi-user.target" > $service_path
$STD sudo systemctl enable --now prometheus
systemctl enable -q --now prometheus
msg_ok "Created Service"
msg_ok "Created Service"
motd_ssh
motd_ssh