mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-02-01 19:31:52 +00:00
63 lines
1.8 KiB
Bash
63 lines
1.8 KiB
Bash
|
#!/usr/bin/env bash
|
||
|
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||
|
# Copyright (c) 2021-2025 community-scripts ORG
|
||
|
# Author: nicedevil007 (NiceDevil)
|
||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||
|
|
||
|
|
||
|
# App Default Values
|
||
|
APP="Alpine-IT-Tools"
|
||
|
var_tags="alpine;development"
|
||
|
var_cpu="1"
|
||
|
var_ram="256"
|
||
|
var_disk="0.2"
|
||
|
var_os="alpine"
|
||
|
var_version="3.21"
|
||
|
var_unprivileged="1"
|
||
|
|
||
|
# App Output & Base Settings
|
||
|
header_info "$APP"
|
||
|
base_settings
|
||
|
|
||
|
# Core
|
||
|
variables
|
||
|
color
|
||
|
catch_errors
|
||
|
|
||
|
function update_script() {
|
||
|
header_info
|
||
|
check_container_storage
|
||
|
check_container_resources
|
||
|
|
||
|
if [[ ! -d /usr/share/nginx/html ]]; then
|
||
|
msg_error "No ${APP} Installation Found!"
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
RELEASE=$(curl -s https://api.github.com/repos/CorentinTh/it-tools/releases/latest | grep '"tag_name":' | cut -d '"' -f4)
|
||
|
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then
|
||
|
DOWNLOAD_URL="https://github.com/CorentinTh/it-tools/releases/download/${RELEASE}/it-tools-${RELEASE#v}.zip"
|
||
|
msg_info "Updating ${APP} LXC"
|
||
|
curl -fsSL -o it-tools.zip "$DOWNLOAD_URL"
|
||
|
mkdir -p /usr/share/nginx/html
|
||
|
rm -rf /usr/share/nginx/html/*
|
||
|
unzip -q it-tools.zip -d /tmp/it-tools
|
||
|
cp -r /tmp/it-tools/dist/* /usr/share/nginx/html
|
||
|
rm -rf /tmp/it-tools
|
||
|
rm -f it-tools.zip
|
||
|
msg_ok "Updated Successfully"
|
||
|
else
|
||
|
msg_ok "No update required. ${APP} is already at ${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 IP:${CL}"
|
||
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}"
|