This commit is contained in:
2026-07-25 23:55:40 -05:00
parent 8754ba47d7
commit 0e209b0085
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
action="${1:-}" action="${1:-}"
FOLDER='/opt/idssys/ta-proxmenu' FOLDER='/opt/idssys/ta-proxmenu'
VERS='2026.7.25-67' VERS='2026.7.25-68'
noupdate=' ' noupdate=' '
+5 -5
View File
@@ -1932,33 +1932,33 @@ MONITORING_MENU() {
if (( pulse_status == 0 )); then if (( pulse_status == 0 )); then
labels=("Pulse monitoring (installed)") labels=("Pulse monitoring (installed)")
else else
labels=("${idsCL[Cyan]}Install Pulse monitoring${idsCL[Default]}") labels=($'\e[36mInstall Pulse monitoring\e[39m')
fi fi
if systemctl is-active --quiet ITSPlatform; then if systemctl is-active --quiet ITSPlatform; then
labels+=("ConnectWise RMM agent (installed)") labels+=("ConnectWise RMM agent (installed)")
else else
labels+=("${idsCL[Cyan]}Install ConnectWise RMM agent${idsCL[Default]}") labels+=($'\e[36mInstall ConnectWise RMM agent\e[39m')
fi fi
if dpkg-query -W -f='${Status}' cyberprotect 2>/dev/null | if dpkg-query -W -f='${Status}' cyberprotect 2>/dev/null |
grep -q "install ok installed"; then grep -q "install ok installed"; then
labels+=("Acronis backup agent (installed)") labels+=("Acronis backup agent (installed)")
else else
labels+=("${idsCL[Cyan]}Install Acronis backup agent${idsCL[Default]}") labels+=($'\e[36mInstall Acronis backup agent\e[39m')
fi fi
if dpkg-query -W -f='${Status}' sentinelagent 2>/dev/null | if dpkg-query -W -f='${Status}' sentinelagent 2>/dev/null |
grep -q "install ok installed"; then grep -q "install ok installed"; then
labels+=("SentinelOne agent (installed)") labels+=("SentinelOne agent (installed)")
else else
labels+=("${idsCL[Cyan]}Install SentinelOne agent${idsCL[Default]}") labels+=($'\e[36mInstall SentinelOne agent\e[39m')
fi fi
if systemctl is-active --quiet 'connectwise*'; then if systemctl is-active --quiet 'connectwise*'; then
labels+=("ScreenConnect agent (installed)") labels+=("ScreenConnect agent (installed)")
else else
labels+=("${idsCL[Cyan]}Install ScreenConnect agent${idsCL[Default]}") labels+=($'\e[36mInstall ScreenConnect agent\e[39m')
fi fi
SELECT_MENU "Monitoring & Agents" labels values SELECT_MENU "Monitoring & Agents" labels values