diff --git a/ct/pve-scripts-lcoal.sh b/ct/pve-scripts-lcoal.sh new file mode 100644 index 00000000..f25263a8 --- /dev/null +++ b/ct/pve-scripts-lcoal.sh @@ -0,0 +1,39 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) +# Copyright (c) 2021-2025 community-scripts ORG +# Author: michelroegl-brunner +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Source: https://www.debian.org/ + +APP="Debian" +var_tags="${var_tags:-os}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-4096}" +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 [[ ! -d /var ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + msg_info "No Update function implementd" + exit +} + +start +build_container +description + +msg_ok "Completed Successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/install/pve-scripts-local-install.sh b/install/pve-scripts-local-install.sh new file mode 100644 index 00000000..83f12f2c --- /dev/null +++ b/install/pve-scripts-local-install.sh @@ -0,0 +1,82 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2025 community-scripts ORG +# Author: michelroegl-brunner +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE + + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing Dependencies" + $STD apt-get update + $STD apt-get install -y \ + build-essential \ + git \ + sshpass \ + expect +msg_ok "Dependencies installed." + +NODE_VERSION=24 setup_nodejs + +INSTALL_DIR=${INSTALL_DIR:-/opt/PVESciptslocal} + +if [ ! -d "$INSTALL_DIR/.git" ]; then + msg_info "Cloning repository into $INSTALL_DIR..." + $STD git clone https://github.com/michelroegl-brunner/PVESciptslocal.git "$INSTALL_DIR" + msg_ok "Repository cloned." +else + msg_info "Directory already exists. Pulling latest changes..." + $STD git -C "$INSTALL_DIR" pull + msg_ok "Repository updated." +fi + +cd "$INSTALL_DIR" || exit + +msg_info "Installing PVE Scripts local" +$STD npm install +cp .env.example .env +mkdir -p data +chmod 755 data +$STD npm run build +msg_ok "Installed PVE Scripts local" + +SERVICE_NAME="pvescriptslocal" +SERVICE_FILE="/etc/systemd/system/${SERVICE_NAME}.service" + +msg_info "Creating Service" +cat > "$SERVICE_FILE" <