mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 02:12:49 +00:00 
			
		
		
		
	* Fixes and standard enforcement * Update * Update * Update install/navidrome-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/ntfy-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/nzbget-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/n8n-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/openhab-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/paperless-ai-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/pairdrop-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Pass 2 * Update * Update --------- Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com>
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Copyright (c) 2021-2025 community-scripts ORG
 | 
						|
# Author: [YourUserName]
 | 
						|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
						|
# Source: [SOURCE_URL]
 | 
						|
 | 
						|
# Import Functions und Setup
 | 
						|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
 | 
						|
color
 | 
						|
verb_ip6
 | 
						|
catch_errors
 | 
						|
setting_up_container
 | 
						|
network_check
 | 
						|
update_os
 | 
						|
 | 
						|
# Installing Dependencies
 | 
						|
msg_info "Installing Dependencies"
 | 
						|
$STD apt-get install -y \
 | 
						|
  [PACKAGE_1] \
 | 
						|
  [PACKAGE_2] \
 | 
						|
  [PACKAGE_3]
 | 
						|
msg_ok "Installed Dependencies"
 | 
						|
 | 
						|
# Template: MySQL Database
 | 
						|
msg_info "Setting up Database"
 | 
						|
DB_NAME=[DB_NAME]
 | 
						|
DB_USER=[DB_USER]
 | 
						|
DB_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
 | 
						|
$STD mysql -u root -e "CREATE DATABASE $DB_NAME;"
 | 
						|
$STD mysql -u root -e "CREATE USER '$DB_USER'@'localhost' IDENTIFIED WITH mysql_native_password AS PASSWORD('$DB_PASS');"
 | 
						|
$STD mysql -u root -e "GRANT ALL ON $DB_NAME.* TO '$DB_USER'@'localhost'; FLUSH PRIVILEGES;"
 | 
						|
{
 | 
						|
    echo "${APPLICATION} Credentials"
 | 
						|
    echo "Database User: $DB_USER"
 | 
						|
    echo "Database Password: $DB_PASS"
 | 
						|
    echo "Database Name: $DB_NAME"
 | 
						|
} >> ~/$APP_NAME.creds
 | 
						|
msg_ok "Set up Database"
 | 
						|
 | 
						|
# Temp
 | 
						|
 | 
						|
# Setup App
 | 
						|
msg_info "Setup ${APPLICATION}"
 | 
						|
RELEASE=$(curl -fsSL https://api.github.com/repos/[REPO]/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
 | 
						|
curl -fsSL -o "${RELEASE}.zip" "https://github.com/[REPO]/archive/refs/tags/${RELEASE}.zip"
 | 
						|
unzip -q "${RELEASE}.zip"
 | 
						|
mv "${APPLICATION}-${RELEASE}/" "/opt/${APPLICATION}"
 | 
						|
# 
 | 
						|
# 
 | 
						|
#
 | 
						|
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
 | 
						|
msg_ok "Setup ${APPLICATION}"
 | 
						|
 | 
						|
# Creating Service (if needed)
 | 
						|
msg_info "Creating Service"
 | 
						|
cat <<EOF >/etc/systemd/system/${APPLICATION}.service
 | 
						|
[Unit]
 | 
						|
Description=${APPLICATION} Service
 | 
						|
After=network.target
 | 
						|
 | 
						|
[Service]
 | 
						|
ExecStart=[START_COMMAND]
 | 
						|
Restart=always
 | 
						|
 | 
						|
[Install]
 | 
						|
WantedBy=multi-user.target
 | 
						|
EOF
 | 
						|
systemctl enable -q --now ${APPLICATION}
 | 
						|
msg_ok "Created Service"
 | 
						|
 | 
						|
motd_ssh
 | 
						|
customize
 | 
						|
 | 
						|
# Cleanup
 | 
						|
msg_info "Cleaning up"
 | 
						|
rm -f ${RELEASE}.zip
 | 
						|
$STD apt-get -y autoremove
 | 
						|
$STD apt-get -y autoclean
 | 
						|
msg_ok "Cleaned" |