This commit is contained in:
2026-03-05 22:04:41 -06:00
parent 4ffca6cd5c
commit 597fa39c1a
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
action="$1" action="$1"
FOLDER='/opt/idssys/ta-proxmenu' FOLDER='/opt/idssys/ta-proxmenu'
VERS='2026.3.7' VERS='2026.3.10'
RNIP=$(ip addr show $(ip route | awk '/default/ { print $5 }') | grep "inet" | head -n 1 | awk '/inet/ {print $2}' | cut -d'/' -f1) RNIP=$(ip addr show $(ip route | awk '/default/ { print $5 }') | grep "inet" | head -n 1 | awk '/inet/ {print $2}' | cut -d'/' -f1)

View File

@@ -235,7 +235,7 @@ MAIN_MENU() {
echo -e " [${idsCL[LightYellow]}2${idsCL[Default]}] ${idsCL[White]}Install Pulse Monitoring${idsCL[Default]}" echo -e " [${idsCL[LightYellow]}2${idsCL[Default]}] ${idsCL[White]}Install Pulse Monitoring${idsCL[Default]}"
echo echo
if ! dpkg -s "connectwise*" &> /dev/null; then if [ ! apt list --installed "connectwise*" &> /dev/null ]; then
echo -e " [${idsCL[LightYellow]}3${idsCL[Default]}] ${idsCL[White]}Install ConnectWise RMM Agent${idsCL[Default]}" echo -e " [${idsCL[LightYellow]}3${idsCL[Default]}] ${idsCL[White]}Install ConnectWise RMM Agent${idsCL[Default]}"
echo -e " [${idsCL[LightYellow]}4${idsCL[Default]}] ${idsCL[White]}Install ScreenConnect Agent${idsCL[Default]}" echo -e " [${idsCL[LightYellow]}4${idsCL[Default]}] ${idsCL[White]}Install ScreenConnect Agent${idsCL[Default]}"
else else
@@ -246,7 +246,7 @@ MAIN_MENU() {
else else
echo -e "${idsCL[DarkGray]} [5] Acronis Backup is already installed${idsCL[Default]}" echo -e "${idsCL[DarkGray]} [5] Acronis Backup is already installed${idsCL[Default]}"
fi fi
if ! dpkg -s "sentinelagent" &> /dev/null; then if [ ! apt list --installed "sentinelagent*" &> /dev/null ]; then
echo -e " [${idsCL[LightYellow]}6${idsCL[Default]}] ${idsCL[White]}Install SentinelOne Agent${idsCL[Default]}" echo -e " [${idsCL[LightYellow]}6${idsCL[Default]}] ${idsCL[White]}Install SentinelOne Agent${idsCL[Default]}"
else else
echo -e "${idsCL[DarkGray]} [6] SentinelOne is already installed${idsCL[Default]}" echo -e "${idsCL[DarkGray]} [6] SentinelOne is already installed${idsCL[Default]}"
@@ -258,7 +258,7 @@ MAIN_MENU() {
else else
echo -e "${idsCL[DarkGray]} [7] Glances is already installed${idsCL[Default]}" echo -e "${idsCL[DarkGray]} [7] Glances is already installed${idsCL[Default]}"
fi fi
if ! dpkg -s "srvadmin-all" &> /dev/null; then if [ ! apt list --installed "srvadmin-all" &> /dev/null ]; then
echo -e " [${idsCL[LightYellow]}8${idsCL[Default]}] ${idsCL[White]}Install Dell OpenManage Server Administrator${idsCL[Default]}" echo -e " [${idsCL[LightYellow]}8${idsCL[Default]}] ${idsCL[White]}Install Dell OpenManage Server Administrator${idsCL[Default]}"
else else
echo -e "${idsCL[DarkGray]} [8] Dell OMSA is already installed - ${idsCL[Default]}https://[proxmox-host-ip]:1311" echo -e "${idsCL[DarkGray]} [8] Dell OMSA is already installed - ${idsCL[Default]}https://[proxmox-host-ip]:1311"