mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	* Big NodeJS Update: Use Helper Function on all Install-Scripts * add jq in node_function * add more
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.6 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-get install -y \
 | 
						|
  gcc
 | 
						|
msg_ok "Installed Dependencies"
 | 
						|
 | 
						|
install_go
 | 
						|
NODE_VERSION="22" install_node_and_modules
 | 
						|
 | 
						|
msg_info "Setup Watcharr"
 | 
						|
temp_file=$(mktemp)
 | 
						|
RELEASE=$(curl -fsSL https://api.github.com/repos/sbondCo/Watcharr/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
 | 
						|
curl -fsSL "https://github.com/sbondCo/Watcharr/archive/refs/tags/v${RELEASE}.tar.gz" -o "$temp_file"
 | 
						|
tar -xzf "$temp_file"
 | 
						|
mv Watcharr-${RELEASE}/ /opt/watcharr
 | 
						|
cd /opt/watcharr
 | 
						|
$STD npm i
 | 
						|
$STD npm run build
 | 
						|
mv ./build ./server/ui
 | 
						|
cd server
 | 
						|
export CGO_ENABLED=1 GOOS=linux
 | 
						|
go mod download
 | 
						|
go build -o ./watcharr
 | 
						|
cat <<EOF >/opt/start.sh
 | 
						|
#! /bin/bash
 | 
						|
source ~/.bashrc
 | 
						|
cd /opt/watcharr/server
 | 
						|
./watcharr
 | 
						|
EOF
 | 
						|
chmod +x /opt/start.sh
 | 
						|
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
 | 
						|
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/start.sh
 | 
						|
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"
 | 
						|
rm -f "$temp_file"
 | 
						|
$STD apt-get -y autoremove
 | 
						|
$STD apt-get -y autoclean
 | 
						|
msg_ok "Cleaned"
 |