mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
#Copyright (c) 2021-2025 community-scripts ORG
 | 
						|
# Author: tremor021
 | 
						|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
						|
# Source: https://www.zerotier.com/
 | 
						|
 | 
						|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
 | 
						|
color
 | 
						|
verb_ip6
 | 
						|
catch_errors
 | 
						|
setting_up_container
 | 
						|
network_check
 | 
						|
update_os
 | 
						|
 | 
						|
msg_info "Setting up Zerotier-One"
 | 
						|
curl -fsSL https://raw.githubusercontent.com/zerotier/ZeroTierOne/main/doc/contact%40zerotier.com.gpg | gpg --import >/dev/null 2>&1
 | 
						|
curl -fsSL https://install.zerotier.com -o /tmp/zerotier-install.sh
 | 
						|
if gpg --verify /tmp/zerotier-install.sh >/dev/null 2>&1; then
 | 
						|
  $STD bash /tmp/zerotier-install.sh
 | 
						|
else
 | 
						|
  msg_warn "Could not verify signature of Zerotier-One install script. Exiting..."
 | 
						|
  exit 1
 | 
						|
fi
 | 
						|
msg_ok "Setup Zerotier-One"
 | 
						|
 | 
						|
msg_info "Setting up UI"
 | 
						|
curl -O https://s3-us-west-1.amazonaws.com/key-networks/deb/ztncui/1/x86_64/ztncui_0.8.14_amd64.deb
 | 
						|
dpkg -i ztncui_0.8.14_amd64.deb
 | 
						|
sh -c "echo ZT_TOKEN=$(cat /var/lib/zerotier-one/authtoken.secret) > /opt/key-networks/ztncui/.env"
 | 
						|
echo HTTPS_PORT=3443 >>/opt/key-networks/ztncui/.env
 | 
						|
echo NODE_ENV=production >>/opt/key-networks/ztncui/.env
 | 
						|
chmod 400 /opt/key-networks/ztncui/.env
 | 
						|
chown ztncui:ztncui /opt/key-networks/ztncui/.env
 | 
						|
systemctl restart ztncui
 | 
						|
msg_ok "Done setting up UI."
 | 
						|
 | 
						|
motd_ssh
 | 
						|
customize
 | 
						|
 | 
						|
msg_info "Cleaning up"
 | 
						|
$STD apt -y autoremove
 | 
						|
$STD apt -y autoclean
 | 
						|
$STD apt -y clean
 | 
						|
msg_ok "Cleaned"
 |