mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-02 17:05:55 +01:00
Part of #12467 — scripts only (no framework changes). New exit codes 250-254 registered in api.func and error_handler.func: - 250: App download failed or version not determined - 251: App file extraction failed (corrupt/incomplete archive) - 252: App required file or resource not found - 253: App data migration required — update aborted - 254: App user declined prompt or input timed out Existing codes reused where applicable: - 10: privileged/Docker required (unifi-os-server) - 64: invalid user input (postgresql, tomcat) - 71: system error (pulse useradd) - 150: service failed to start (docker, npmplus) - 153: build failed (booklore) - 233: app not installed (evcc, endurain, grafana, loki, itsm-ng) - 236: hardware not detected (unifi-os-server /dev/net/tun) - 238: OS not supported (frigate)
95 lines
2.8 KiB
Bash
95 lines
2.8 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: hoholms
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/grafana/loki
|
|
|
|
APP="Loki"
|
|
var_tags="${var_tags:-monitoring;logs}"
|
|
var_cpu="${var_cpu:-1}"
|
|
var_ram="${var_ram:-512}"
|
|
var_disk="${var_disk:-2}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
|
|
if ! dpkg -s loki >/dev/null 2>&1; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit 233
|
|
fi
|
|
|
|
CHOICE=$(msg_menu "Loki Update Options" \
|
|
"1" "Update Loki & Promtail" \
|
|
"2" "Allow 0.0.0.0 for listening" \
|
|
"3" "Allow only ${LOCAL_IP} for listening")
|
|
|
|
case $CHOICE in
|
|
1)
|
|
msg_info "Stopping Loki"
|
|
systemctl stop loki
|
|
if systemctl is-active --quiet promtail 2>/dev/null || dpkg -s promtail >/dev/null 2>&1; then
|
|
systemctl stop promtail
|
|
fi
|
|
msg_ok "Stopped Loki"
|
|
|
|
msg_info "Updating Loki"
|
|
$STD apt update
|
|
$STD apt install -y --only-upgrade loki
|
|
if dpkg -s promtail >/dev/null 2>&1; then
|
|
$STD apt install -y --only-upgrade promtail
|
|
fi
|
|
msg_ok "Updated Loki"
|
|
|
|
msg_info "Starting Loki"
|
|
systemctl start loki
|
|
if dpkg -s promtail >/dev/null 2>&1; then
|
|
systemctl start promtail
|
|
fi
|
|
msg_ok "Started Loki"
|
|
msg_ok "Updated successfully!"
|
|
exit
|
|
;;
|
|
2)
|
|
msg_info "Configuring Loki to listen on 0.0.0.0"
|
|
sed -i 's/http_listen_address:.*/http_listen_address: 0.0.0.0/' /etc/loki/config.yml
|
|
sed -i 's/http_listen_port:.*/http_listen_port: 3100/' /etc/loki/config.yml
|
|
systemctl restart loki
|
|
msg_ok "Configured Loki to listen on 0.0.0.0"
|
|
exit
|
|
;;
|
|
3)
|
|
msg_info "Configuring Loki to listen on ${LOCAL_IP}"
|
|
sed -i "s/http_listen_address:.*/http_listen_address: $LOCAL_IP/" /etc/loki/config.yml
|
|
sed -i 's/http_listen_port:.*/http_listen_port: 3100/' /etc/loki/config.yml
|
|
systemctl restart loki
|
|
msg_ok "Configured Loki to listen on ${LOCAL_IP}"
|
|
exit
|
|
;;
|
|
esac
|
|
exit 0
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed successfully!\n"
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW} Access loki using the following URL:${CL}"
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3100${CL}\n"
|
|
if dpkg -s promtail >/dev/null 2>&1; then
|
|
echo -e "${INFO}${YW} Access promtail using the following URL:${CL}"
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9080${CL}"
|
|
fi
|