diff --git a/ct/headers/iventoy b/ct/headers/iventoy deleted file mode 100644 index 93049ea9f..000000000 --- a/ct/headers/iventoy +++ /dev/null @@ -1,6 +0,0 @@ - _ _ __ __ - (_) | / /__ ____ / /_____ __ __ - / /| | / / _ \/ __ \/ __/ __ \/ / / / - / / | |/ / __/ / / / /_/ /_/ / /_/ / -/_/ |___/\___/_/ /_/\__/\____/\__, / - /____/ diff --git a/ct/iventoy.sh b/ct/iventoy.sh deleted file mode 100644 index c4d543c40..000000000 --- a/ct/iventoy.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) -# Copyright (c) 2021-2026 tteck -# Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://www.iventoy.com/en/index.html - -APP="iVentoy" -var_tags="${var_tags:-pxe-tool}" -var_disk="${var_disk:-2}" -var_cpu="${var_cpu:-1}" -var_ram="${var_ram:-512}" -var_os="${var_os:-debian}" -var_version="${var_version:-13}" -var_unprivileged="${var_unprivileged:-0}" - -header_info "$APP" -variables -color -catch_errors - -function update_script() { - header_info - check_container_storage - check_container_resources - if [[ ! -d /opt/iventoy ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - msg_error "Currently we don't provide an update function for this ${APP}." - 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}:26000${CL}" diff --git a/frontend/public/json/iventoy.json b/frontend/public/json/iventoy.json deleted file mode 100644 index 2c9622caf..000000000 --- a/frontend/public/json/iventoy.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name": "iVentoy", - "slug": "iventoy", - "categories": [ - 2 - ], - "date_created": "2024-05-16", - "type": "ct", - "updateable": false, - "privileged": false, - "interface_port": 26000, - "documentation": "https://www.iventoy.com/en/doc_news.html", - "website": "https://www.iventoy.com/", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/iventoy.webp", - "config_path": "", - "description": "iVentoy is an upgraded PXE server that allows simultaneous OS booting and installation on multiple machines via network. It is user-friendly, requiring only the placement of ISO files in a designated folder and selecting PXE boot on the client machine. iVentoy supports x86 Legacy BIOS, IA32 UEFI, x86_64 UEFI, and ARM64 UEFI modes. It is compatible with over 110 OS types, including Windows, WinPE, Linux, and VMware.", - "install_methods": [ - { - "type": "default", - "script": "ct/iventoy.sh", - "resources": { - "cpu": 1, - "ram": 512, - "hdd": 2, - "os": "debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [ - { - "text": "Container must be privileged.", - "type": "warning" - } - ] -} diff --git a/install/iventoy-install.sh b/install/iventoy-install.sh deleted file mode 100644 index 716c1351d..000000000 --- a/install/iventoy-install.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 tteck -# Author: tteck (tteckster) -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://www.iventoy.com/en/index.html - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -RELEASE=$(curl -fsSL https://api.github.com/repos/ventoy/pxe/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') -msg_info "Installing iVentoy v${RELEASE}" -mkdir -p /opt/iventoy/{data,iso} -curl -fsSL "https://github.com/ventoy/PXE/releases/download/v${RELEASE}/iventoy-${RELEASE}-linux-free.tar.gz" -o "iventoy-${RELEASE}-linux-free.tar.gz" -tar -C /tmp -xzf iventoy*.tar.gz -mv /tmp/iventoy*/* /opt/iventoy/ -rm -rf iventoy*.tar.gz -msg_ok "Installed iVentoy" - -msg_info "Creating Service" -cat </etc/systemd/system/iventoy.service -[Unit] -Description=iVentoy PXE Booter -Documentation=https://www.iventoy.com -Wants=network-online.target -[Service] -Type=forking -Environment=IVENTOY_API_ALL=1 -Environment=IVENTOY_AUTO_RUN=1 -Environment=LIBRARY_PATH=/opt/iventoy/lib/lin64 -Environment=LD_LIBRARY_PATH=/opt/iventoy/lib/lin64 -ExecStart=sh ./iventoy.sh -R start -WorkingDirectory=/opt/iventoy -Restart=on-failure -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now iventoy -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc