mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 10:22:50 +00:00 
			
		
		
		
	* Initial Call, Switch from curl -s to curl -fsSL and wget to curl -fssL * more switches * switch vms * more curls * More curls * more * more * more changes * more * prepare ipv6 calls * change frontend to ipv6 * Formatting * Fromatting * Update gomft.sh * Update gomft-install.sh * Update ersatztv.sh * Update build.func --------- Co-authored-by: Slaviša Arežina <58952836+tremor021@users.noreply.github.com>
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
 | 
						|
# Copyright (c) 2021-2025 community-scripts ORG
 | 
						|
# Author: liecno
 | 
						|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
						|
# Source: https://github.com/FunkeyFlo/ps5-mqtt/
 | 
						|
 | 
						|
APP="PS5-MQTT"
 | 
						|
var_tags="smarthome;automation"
 | 
						|
var_cpu="1"
 | 
						|
var_ram="512"
 | 
						|
var_disk="3"
 | 
						|
var_os="debian"
 | 
						|
var_version="12"
 | 
						|
var_unprivileged="1"
 | 
						|
 | 
						|
header_info "$APP"
 | 
						|
variables
 | 
						|
color
 | 
						|
catch_errors
 | 
						|
 | 
						|
function update_script() {
 | 
						|
    header_info
 | 
						|
    check_container_storage
 | 
						|
    check_container_resources
 | 
						|
 | 
						|
    if [[ ! -d /opt/ps5-mqtt ]]; then
 | 
						|
        msg_error "No ${APP} installation found!"
 | 
						|
        exit
 | 
						|
    fi
 | 
						|
 | 
						|
    RELEASE=$(curl -fsSL https://api.github.com/repos/FunkeyFlo/ps5-mqtt/releases/latest | jq -r '.tag_name')
 | 
						|
 | 
						|
    if [[ "${RELEASE}" != "$(cat /opt/ps5-mqtt_version.txt)" ]]; then
 | 
						|
        msg_info "Stopping service"
 | 
						|
        systemctl stop ps5-mqtt
 | 
						|
        msg_ok "Stopped service"
 | 
						|
 | 
						|
        msg_info "Updating PS5-MQTT to ${RELEASE}"
 | 
						|
        curl -fsSL https://github.com/FunkeyFlo/ps5-mqtt/archive/refs/tags/${RELEASE}.tar.gz -o /tmp/${RELEASE}.tar.gz
 | 
						|
        rm -rf /opt/ps5-mqtt
 | 
						|
        tar zxf /tmp/${RELEASE}.tar.gz -C /opt
 | 
						|
        mv /opt/ps5-mqtt-* /opt/ps5-mqtt
 | 
						|
        rm /tmp/${RELEASE}.tar.gz
 | 
						|
        echo ${RELEASE} >/opt/ps5-mqtt_version.txt
 | 
						|
        msg_ok "Updated PS5-MQTT"
 | 
						|
 | 
						|
        msg_info "Building new PS5-MQTT version"
 | 
						|
        cd /opt/ps5-mqtt/ps5-mqtt/
 | 
						|
        $STD npm install
 | 
						|
        $STD npm run build
 | 
						|
        msg_ok "Built new PS5-MQTT version"
 | 
						|
 | 
						|
        msg_info "Starting service"
 | 
						|
        systemctl start ps5-mqtt
 | 
						|
        msg_ok "Started service"
 | 
						|
    else
 | 
						|
        msg_ok "No update required. ${APP} is already at ${RELEASE}"
 | 
						|
    fi
 | 
						|
 | 
						|
    exit
 | 
						|
}
 | 
						|
 | 
						|
start
 | 
						|
build_container
 | 
						|
description
 | 
						|
 | 
						|
msg_ok "Completed Successfully!\n"
 | 
						|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
 | 
						|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
 | 
						|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8645${CL}"
 |