]> ###2015.12.11 - change repo - change install and remove method ###2015.11.18 - fixed "Waiting for events" triggering notification on system start ###2015.11.17 - fix permissions for events ###2015.11.10b - deleted wrong page file ###2015.11.10 - stop event monitoring on plugin removal ###2015.11.09 - minor bug fixes ###2015.11.08 - add settings page - add event notifications - add remote IPMI access ###2015.08.15 - update for unRAID 6.1-rc+ only ###2015.05.07a - fix bug ###2015.05.07 - initial unRAID 6 release. &pkgURL/;&pkg; &md5; &gitURL;/archive/&plgname;.txz &gitURL;/archive/&plgname;.md5 # Verify and install plugin package sum1=$(/usr/bin/md5sum &plgpath;/&plgname;.txz) sum2=$(/usr/bin/cat &plgpath;/&plgname;.md5) if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then echo "Wrong 'plugin' package md5 hash." rm &plgpath;/&plgname;.txz rm &plgpath;/&plgname;.md5 exit 1 else upgradepkg --install-new &plgpath;/&plgname;.txz fi # Update file permissions of scripts chmod +0755 &emhttp;/scripts/* # Load impi drivers echo "Loading ipmi drivers..." modprobe ipmi_si modprobe ipmi_devintf # Cleaning old source files find &plgpath;/ -type f -iname "&name;*.txz" ! -iname "*&version;*" -delete find &plgpath;/ -type f -iname "&name;*.md5" ! -iname "*&version;*" -delete echo "" echo "-----------------------------------------------------------" echo " &name; has been installed." echo " This plugin requires Dynamix webGui to operate" echo " Copyright 2015, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo "" &emhttp;/scripts/stop removepkg &plgpath;/&plgname;.txz rm -rf &emhttp; rm -f &plgpath;/&plgname;.txz rm -f &plgpath;/&plgname;.md5 removepkg &plugin;/&pkg; echo "Unloading ipmi drivers..." modprobe -r ipmi_si modprobe -r ipmi_devintf echo "" echo "-----------------------------------------------------------" echo " &name; has been removed." echo " Copyright 2015, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo ""