mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-08 00:28:11 +00:00
52 install scripts had a project website in '# Source:' but no GitHub link. Merged the GitHub repo URL into the Source header as: # Source: https://website.com/ | Github: https://github.com/OWNER/REPO Repos sourced from fetch_and_deploy_gh_release calls, get_latest_github_release calls, or known project repos for npm/pip installed apps. Two scripts (fumadocs, pve-scripts-local) had no Source line at all — added one. Shinobi skipped (GitLab-only, no GitHub repo).
64 lines
1.3 KiB
Bash
64 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: michelroegl-brunner
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/community-scripts/ProxmoxVE-Local
|
|
|
|
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 \
|
|
build-essential \
|
|
sshpass \
|
|
rsync \
|
|
expect
|
|
msg_ok "Dependencies installed."
|
|
|
|
NODE_VERSION=24 setup_nodejs
|
|
fetch_and_deploy_gh_release "ProxmoxVE-Local" "community-scripts/ProxmoxVE-Local" "tarball"
|
|
|
|
msg_info "Installing PVE Scripts local"
|
|
cd /opt/ProxmoxVE-Local
|
|
$STD npm install
|
|
cp .env.example .env
|
|
mkdir -p data
|
|
chmod 755 data
|
|
|
|
$STD npx prisma generate
|
|
$STD npx prisma migrate deploy
|
|
|
|
$STD npm run build
|
|
msg_ok "Installed PVE Scripts local"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/pvescriptslocal.service
|
|
[Unit]
|
|
Description=PVEScriptslocal Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
WorkingDirectory=/opt/ProxmoxVE-Local
|
|
ExecStart=/usr/bin/npm start
|
|
Restart=always
|
|
RestartSec=10
|
|
Environment=NODE_ENV=production
|
|
User=root
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
|
|
systemctl enable -q --now pvescriptslocal
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|