mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	* bump various scripts (V - W) to debian 13 * Update install/wizarr-install.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Add apt clean command to cleanup process * Update ct/wireguard.sh Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Copyright (c) 2021-2025 community-scripts ORG
 | 
						|
# Author: Slaviša Arežina (tremor021)
 | 
						|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
						|
# Source: https://github.com/sbondCo/Watcharr
 | 
						|
 | 
						|
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 gcc
 | 
						|
msg_ok "Installed Dependencies"
 | 
						|
 | 
						|
setup_go
 | 
						|
NODE_VERSION="22" setup_nodejs
 | 
						|
fetch_and_deploy_gh_release "watcharr" "sbondCo/Watcharr" "tarball"
 | 
						|
 | 
						|
msg_info "Setup Watcharr"
 | 
						|
cd /opt/watcharr || exit
 | 
						|
$STD npm i
 | 
						|
$STD npm run build
 | 
						|
mv ./build ./server/ui
 | 
						|
cd server || exit
 | 
						|
export CGO_ENABLED=1 GOOS=linux
 | 
						|
$STD go mod download
 | 
						|
$STD go build -o ./watcharr
 | 
						|
msg_ok "Setup Watcharr"
 | 
						|
 | 
						|
msg_info "Creating Service"
 | 
						|
cat <<EOF >/etc/systemd/system/watcharr.service
 | 
						|
[Unit]
 | 
						|
Description=Watcharr Service
 | 
						|
After=network.target
 | 
						|
 | 
						|
[Service]
 | 
						|
WorkingDirectory=/opt/watcharr/server
 | 
						|
ExecStart=/opt/watcharr/server/watcharr
 | 
						|
Restart=always
 | 
						|
User=root
 | 
						|
 | 
						|
[Install]
 | 
						|
WantedBy=multi-user.target
 | 
						|
EOF
 | 
						|
systemctl enable -q --now watcharr
 | 
						|
msg_ok "Created Service"
 | 
						|
 | 
						|
motd_ssh
 | 
						|
customize
 | 
						|
 | 
						|
msg_info "Cleaning up"
 | 
						|
$STD apt -y autoremove
 | 
						|
$STD apt -y autoclean
 | 
						|
$STD apt -y clean
 | 
						|
msg_ok "Cleaned"
 |