From 999d7d017eeaaff20a12735bde7d7d32276dc56f Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Wed, 11 Feb 2026 09:19:00 +0100 Subject: [PATCH] Delete ct/openclaw.sh --- ct/openclaw.sh | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 ct/openclaw.sh diff --git a/ct/openclaw.sh b/ct/openclaw.sh deleted file mode 100644 index aea772a33..000000000 --- a/ct/openclaw.sh +++ /dev/null @@ -1,50 +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: pfassina -# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE -# Source: https://github.com/openclaw/openclaw - -APP="OpenClaw" -var_tags="${var_tags:-ai-assistant;chatops}" -var_cpu="${var_cpu:-2}" -var_ram="${var_ram:-2048}" -var_disk="${var_disk:-4}" -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 /etc/systemd/system/openclaw.service ]]; then - msg_error "No ${APP} Installation Found!" - exit - fi - msg_info "Stopping Service" - systemctl stop openclaw - msg_ok "Stopped Service" - - NODE_VERSION="22" NODE_MODULE="openclaw" setup_nodejs - msg_info "Starting Service" - systemctl start openclaw - msg_ok "Started Service" - msg_ok "Updated successfully!" - 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} Run 'openclaw onboard' inside the container to complete setup${CL}" -echo -e "${INFO}${YW} Access it using the following URL:${CL}" -echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:18789${CL}"