mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 02:12:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			76 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Copyright (c) 2021-2025 tteck
 | 
						|
# Author: tteck (tteckster)
 | 
						|
# Co-Author: remz1337
 | 
						|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
						|
# Source: https://github.com/Brandawg93/PeaNUT/
 | 
						|
 | 
						|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
 | 
						|
color
 | 
						|
verb_ip6
 | 
						|
catch_errors
 | 
						|
setting_up_container
 | 
						|
network_check
 | 
						|
update_os
 | 
						|
 | 
						|
NODE_VERSION="22" setup_nodejs
 | 
						|
 | 
						|
msg_info "Installing NUT"
 | 
						|
$STD apt-get install -y nut-client
 | 
						|
msg_ok "Installed NUT"
 | 
						|
 | 
						|
msg_info "Installing Peanut"
 | 
						|
RELEASE=$(curl -fsSL https://api.github.com/repos/Brandawg93/PeaNUT/releases/latest | grep '"tag_name":' | cut -d'"' -f4)
 | 
						|
curl -fsSL "https://api.github.com/repos/Brandawg93/PeaNUT/tarball/${RELEASE}" -o "peanut.tar.gz"
 | 
						|
mkdir -p /opt/peanut
 | 
						|
tar -xzf peanut.tar.gz -C /opt/peanut --strip-components=1
 | 
						|
rm peanut.tar.gz
 | 
						|
cd /opt/peanut
 | 
						|
$STD npm install -g pnpm
 | 
						|
$STD pnpm i
 | 
						|
$STD pnpm run build
 | 
						|
cp -r .next/static .next/standalone/.next/
 | 
						|
mkdir -p /opt/peanut/.next/standalone/config
 | 
						|
mkdir -p /etc/peanut/
 | 
						|
cat <<EOF >/etc/peanut/settings.yml
 | 
						|
WEB_HOST: 0.0.0.0
 | 
						|
WEB_PORT: 3000
 | 
						|
NUT_HOST: 0.0.0.0
 | 
						|
NUT_PORT: 3493
 | 
						|
EOF
 | 
						|
ln -sf /etc/peanut/settings.yml /opt/peanut/.next/standalone/config/settings.yml
 | 
						|
msg_ok "Installed Peanut"
 | 
						|
 | 
						|
msg_info "Creating Service"
 | 
						|
cat <<EOF >/etc/systemd/system/peanut.service
 | 
						|
[Unit]
 | 
						|
Description=Peanut
 | 
						|
After=network.target
 | 
						|
[Service]
 | 
						|
SyslogIdentifier=peanut
 | 
						|
Restart=always
 | 
						|
RestartSec=5
 | 
						|
Type=simple
 | 
						|
Environment="NODE_ENV=production"
 | 
						|
#Environment="NUT_HOST=localhost"
 | 
						|
#Environment="NUT_PORT=3493"
 | 
						|
#Environment="WEB_HOST=0.0.0.0"
 | 
						|
#Environment="WEB_PORT=3000"
 | 
						|
WorkingDirectory=/opt/peanut
 | 
						|
ExecStart=node /opt/peanut/.next/standalone/server.js
 | 
						|
TimeoutStopSec=30
 | 
						|
[Install]
 | 
						|
WantedBy=multi-user.target
 | 
						|
EOF
 | 
						|
systemctl enable -q --now peanut
 | 
						|
msg_ok "Created Service"
 | 
						|
 | 
						|
motd_ssh
 | 
						|
customize
 | 
						|
 | 
						|
msg_info "Cleaning up"
 | 
						|
$STD apt-get -y autoremove
 | 
						|
$STD apt-get -y autoclean
 | 
						|
msg_ok "Cleaned"
 |