diff --git a/ct/upsnap.sh b/ct/upsnap.sh deleted file mode 100644 index 0b4ddde1..00000000 --- a/ct/upsnap.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) -# Copyright (c) 2021-2026 community-scripts ORG -# Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://github.com/seriousm4x/UpSnap - -APP="UpSnap" -var_tags="${var_tags:-network;wol;monitoring}" -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 [[ ! -f ~/.upsnap ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - if check_for_gh_release "upsnap" "seriousm4x/UpSnap"; then - msg_info "Stopping Service" - systemctl stop upsnap - msg_ok "Stopped Service" - - fetch_and_deploy_gh_release "upsnap" "seriousm4x/UpSnap" "prebuild" "latest" "/opt/upsnap" "UpSnap_*_linux_amd64.zip" - chmod +x /opt/upsnap/upsnap - setcap 'cap_net_raw=+ep' /opt/upsnap/upsnap - - msg_info "Starting Service" - systemctl start upsnap - msg_ok "Started Service" - msg_ok "Updated ${APP}" - 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}:8090${CL}" diff --git a/ct/whodb.sh b/ct/whodb.sh deleted file mode 100644 index 59ab08e3..00000000 --- a/ct/whodb.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env bash -source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) -# Copyright (c) 2021-2026 community-scripts ORG -# Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://whodb.com/ - -APP="WhoDB" -var_tags="${var_tags:-database;management;gui}" -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 [[ ! -f /opt/whodb/whodb ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - - if check_for_gh_release "whodb" "clidey/whodb"; then - msg_info "Stopping Service" - systemctl stop whodb - msg_ok "Stopped Service" - - fetch_and_deploy_gh_release "whodb" "clidey/whodb" "singlefile" "latest" "/opt/whodb" "whodb-*-linux-amd64" - - msg_info "Starting Service" - systemctl start whodb - msg_ok "Started Service" - msg_ok "Updated ${APP}" - 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}:8080${CL}" diff --git a/install/upsnap-install.sh b/install/upsnap-install.sh deleted file mode 100644 index 6e7a4221..00000000 --- a/install/upsnap-install.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 community-scripts ORG -# Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://github.com/seriousm4x/UpSnap - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -msg_info "Installing Dependencies" -$STD apt install -y \ - nmap \ - smbclient \ - sshpass \ - libcap2-bin -msg_ok "Installed Dependencies" - -fetch_and_deploy_gh_release "upsnap" "seriousm4x/UpSnap" "prebuild" "latest" "/opt/upsnap" "UpSnap_*_linux_amd64.zip" - -msg_info "Setting up Application" -chmod +x /opt/upsnap/upsnap -setcap 'cap_net_raw=+ep' /opt/upsnap/upsnap -msg_ok "Set up Application" - -msg_info "Creating Service" -cat </etc/systemd/system/upsnap.service -[Unit] -Description=UpSnap Wake-on-LAN -After=network.target - -[Service] -Type=simple -User=root -WorkingDirectory=/opt/upsnap -ExecStart=/opt/upsnap/upsnap serve --http 0.0.0.0:8090 -Restart=on-failure -RestartSec=5 - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now upsnap -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc diff --git a/install/whodb-install.sh b/install/whodb-install.sh deleted file mode 100644 index 46d204c2..00000000 --- a/install/whodb-install.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 community-scripts ORG -# Author: MickLesk (CanbiZ) -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://whodb.com/ - -source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" -color -verb_ip6 -catch_errors -setting_up_container -network_check -update_os - -fetch_and_deploy_gh_release "whodb" "clidey/whodb" "singlefile" "latest" "/opt/whodb" "whodb-*-linux-amd64" - -msg_info "Creating Service" -cat </etc/systemd/system/whodb.service -[Unit] -Description=WhoDB Database Management -After=network.target - -[Service] -Type=simple -User=root -WorkingDirectory=/opt/whodb -ExecStart=/opt/whodb/whodb -Restart=on-failure -RestartSec=5 - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now whodb -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc diff --git a/json/upsnap.json b/json/upsnap.json deleted file mode 100644 index bdae169d..00000000 --- a/json/upsnap.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "name": "UpSnap", - "slug": "upsnap", - "categories": [ - 4 - ], - "date_created": "2026-04-02", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 8090, - "documentation": "https://github.com/seriousm4x/UpSnap/wiki", - "website": "https://github.com/seriousm4x/UpSnap", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/upsnap.webp", - "description": "UpSnap is a simple Wake-on-LAN web app with device dashboard, scheduled wake events via cron, network scanning with nmap, custom shutdown commands, user management, and 35 themes.", - "install_methods": [ - { - "type": "default", - "script": "ct/upsnap.sh", - "config_path": "", - "resources": { - "cpu": 1, - "ram": 512, - "hdd": 2, - "os": "Debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [ - { - "text": "The first user to register becomes the admin (visit `http://IP:8090/_/`).", - "type": "info" - }, - { - "text": "Do not expose UpSnap to the internet — shutdown commands can execute shell commands. Use a VPN for remote access.", - "type": "warning" - } - ] -} diff --git a/json/whodb.json b/json/whodb.json deleted file mode 100644 index c9d2110f..00000000 --- a/json/whodb.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name": "WhoDB", - "slug": "whodb", - "categories": [ - 8 - ], - "date_created": "2026-04-13", - "type": "ct", - "updateable": true, - "privileged": false, - "interface_port": 8080, - "documentation": "https://docs.whodb.com/", - "website": "https://whodb.com/", - "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/whodb.webp", - "description": "WhoDB is a lightweight next-gen database management tool built with Go and React, supporting PostgreSQL, MySQL, SQLite, MongoDB, Redis, MariaDB, ElasticSearch, and ClickHouse with AI-powered natural language queries.", - "install_methods": [ - { - "type": "default", - "script": "ct/whodb.sh", - "config_path": "", - "resources": { - "cpu": 1, - "ram": 512, - "hdd": 2, - "os": "Debian", - "version": "13" - } - } - ], - "default_credentials": { - "username": null, - "password": null - }, - "notes": [ - { - "text": "WhoDB connects to external databases — enter your database credentials on the login page.", - "type": "info" - } - ] -}