From 5c864428ddb86f61801b9f4cb9b616a0f4e0ac64 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sat, 28 Feb 2026 17:15:33 -0600 Subject: [PATCH] Update proxmenu-scripts.sh --- proxmenu-scripts.sh | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/proxmenu-scripts.sh b/proxmenu-scripts.sh index a37f706..e241688 100755 --- a/proxmenu-scripts.sh +++ b/proxmenu-scripts.sh @@ -6,6 +6,18 @@ source /opt/idssys/defaults/default.inc source /opt/idssys/ta-proxmenu/defaults.inc +INSTALL_PULSE() { + read -n 1 -p "Are you sure you wish to install Pulse (Y/n)?" choice + case "$choice" in + [Nn]) MAIN_MENU;; + * ) + echo + bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/pulse.sh)" + echo + echo -e "\n${idsCL[Green]}Pulse has been installed${idsCL[Default]}" + [ ${action-x} ] && exit 0 || ENTER2CONTINUE;; + esac +} INSTALL_ACRONIS() { read -n 1 -p "Are you sure you wish to install Acronis (Y/n)?" choice @@ -24,6 +36,7 @@ INSTALL_ACRONIS() { esac } + INSTALL_PROXMENUX() { read -n 1 -p "Are you sure you wish to install ProxMenux (Y/n)?" choice case "$choice" in @@ -181,10 +194,11 @@ MAIN_MENU() { echo -e "---------------------------------------------------------------------------" echo if [ ! -f /usr/local/bin/menu ]; then - echo -e " [${idsCL[LightYellow]}P${idsCL[Default]}] ${idsCL[White]}Install ProxMenux${idsCL[Default]}" + echo -e " [${idsCL[LightYellow]}M${idsCL[Default]}] ${idsCL[White]}Install ProxMenux${idsCL[Default]}" else - echo -e " [${idsCL[LightYellow]}P${idsCL[Default]}] ${idsCL[White]}Run ProxMenux${idsCL[Default]}" + echo -e " [${idsCL[LightYellow]}M${idsCL[Default]}] ${idsCL[White]}Run ProxMenux${idsCL[Default]}" fi + echo -e " [${idsCL[LightYellow]}P${idsCL[Default]}] ${idsCL[White]}Install Pulse Monitoring${idsCL[Default]}" if ! dpkg -s "connectwise*" &> /dev/null; then echo -e " [${idsCL[LightYellow]}R${idsCL[Default]}] ${idsCL[White]}Install ConnectWise RMM Agent${idsCL[Default]}" echo -e " [${idsCL[LightYellow]}S${idsCL[Default]}] ${idsCL[White]}Install ScreenConnect Agent${idsCL[Default]}" @@ -215,7 +229,8 @@ MAIN_MENU() { echo case $opt in - [Pp]) INSTALL_PROXMENUX;; + [Mm]) INSTALL_PROXMENUX;; + [Pp]) INSTALL_PULSE;; [Rr]) INSTALL_RMM;; [Ss]) INSTALL_SCREENCONNECT;; [Aa]) INSTALL_ACRONIS;;