ProxmoxVE/ct/glpi.sh

54 lines
1.4 KiB
Bash
Raw Normal View History

2025-01-02 03:33:01 +00:00
#!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
2025-01-03 12:25:02 +00:00
2025-01-02 03:33:01 +00:00
# Copyright (c) 2021-2025 community-scripts ORG
2025-01-03 12:25:02 +00:00
# Author: Nícolas Pastorello (opastorello)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
2025-01-02 03:33:01 +00:00
# App Default Values
APP="GLPI"
var_tags="assat-management;foss"
var_cpu="2"
var_ram="2048"
var_disk="10"
var_os="debian"
var_version="12"
var_unprivileged="1"
2025-01-02 03:48:53 +00:00
# App Output & Base Settings
header_info "$APP"
base_settings
# Core
variables
color
catch_errors
2025-01-02 03:33:01 +00:00
function update_script() {
header_info
check_container_storage
check_container_resources
2025-01-02 03:48:53 +00:00
2025-01-02 03:51:01 +00:00
if [[ ! -d /var/www/html/glpi/ ]]; then
2025-01-02 03:33:01 +00:00
msg_error "No ${APP} Installation Found!"
exit
fi
2025-01-02 03:51:01 +00:00
RELEASE=$(curl -s https://api.github.com/repos/glpi-project/glpi/releases/latest | grep '"tag_name"' | sed -E 's/.*"tag_name": "([^"]+)".*/\1/')
2025-01-02 03:33:01 +00:00
if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
msg_info "Updating ${APP} to v${RELEASE}"
2025-01-03 12:25:02 +00:00
#Auto update under development
2025-01-02 03:33:01 +00:00
else
msg_ok "No update required. ${APP} is already at v${RELEASE}."
fi
exit
}
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 it using the following URL:${CL}"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:80${CL}"