From f02403505ea23e93355ee6ac6fb94bfbe049750c Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Sat, 14 Feb 2026 22:51:30 +0100 Subject: [PATCH] Delete install/seer-install.sh --- install/seer-install.sh | 65 ----------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 install/seer-install.sh diff --git a/install/seer-install.sh b/install/seer-install.sh deleted file mode 100644 index 0ff9c6685..000000000 --- a/install/seer-install.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/env bash - -# Copyright (c) 2021-2026 community-scripts ORG -# Author: CrazyWolf13 -# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE -# Source: https://docs.seerr.dev/ - -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 install -y build-essential -msg_ok "Installed Dependencies" - -fetch_and_deploy_gh_release "seer" "seerr-team/seerr" "tarball" "latest" -pnpm_desired=$(grep -Po '"pnpm":\s*"\K[^"]+' /opt/seer/package.json) -NODE_VERSION="22" NODE_MODULE="pnpm@$pnpm_desired" setup_nodejs - -msg_info "Installing Seer (Patience)" -export CYPRESS_INSTALL_BINARY=0 -cd /opt/seer -$STD pnpm install --frozen-lockfile -export NODE_OPTIONS="--max-old-space-size=3072" -$STD pnpm build -mkdir -p /etc/seer/ -cat </etc/seer/seer.conf -## Seer's default port is 5055, if you want to use both, change this. -## specify on which port to listen -PORT=5055 - -## specify on which interface to listen, by default seer listens on all interfaces -HOST=0.0.0.0 - -## Uncomment if you want to force Node.js to resolve IPv4 before IPv6 (advanced users only) -# FORCE_IPV4_FIRST=true -EOF -msg_ok "Installed Seer" - -msg_info "Creating Service" -cat </etc/systemd/system/seer.service -[Unit] -Description=Seer Service -After=network.target - -[Service] -EnvironmentFile=/etc/seer/seer.conf -Environment=NODE_ENV=production -Type=exec -WorkingDirectory=/opt/seer -ExecStart=/usr/bin/node dist/index.js - -[Install] -WantedBy=multi-user.target -EOF -systemctl enable -q --now seer -msg_ok "Created Service" - -motd_ssh -customize -cleanup_lxc