HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: //proc/self/root/lib64/nagios/plugins/check_smversion
#!/bin/bash
INSTALLED_VERSION=$(grep SUCCESS /opt/smartermail/sminstall  | cut -f 2 -d \| | cut -f 1,2,3 -d .)
AVAIL_VERSION=$(curl -s https://updates.smartertools.com/smartermail/smversions.xml | xmlstarlet sel -t -v "/rss/channel/item[1]/title")

if [[ "$INSTALLED_VERSION" != "$AVAIL_VERSION" ]]; then
	echo "[CRITICAL] New SmarterMail version $AVAIL_VERSION is avaialble."
	exit 2
else
	echo "[OK] The latest SmarterMail version $INSTALLED_VERSION is installed."
	exit 0
fi