From 69d73d811abb5c9651ee64ae72fc0d4ee9785b39 Mon Sep 17 00:00:00 2001 From: dmacias72 Date: Thu, 24 Mar 2016 22:53:32 -0600 Subject: [PATCH] update --- plugins/ipmi.plg | 37 +++++++++++++++++++++++++++++-------- plugins/ipmi.xml | 11 ++++++++++- 2 files changed, 39 insertions(+), 9 deletions(-) diff --git a/plugins/ipmi.plg b/plugins/ipmi.plg index 9d40f3f6..ee0e947f 100755 --- a/plugins/ipmi.plg +++ b/plugins/ipmi.plg @@ -3,7 +3,7 @@ - + @@ -16,8 +16,17 @@ +###2016.03.24 +- update for 6.2 to freeipmi 1.5.1 +- new installs on 6.2 will work fine +- 6.2 users with previous install will need to reboot or install libgcrypt-1.6.5 (temporarily) to use freipmi 1.5.1 +- libgcrypt-1.6.5 is included with unRAID 6.2 and previous versions downgraded it to 1.5.5 to use freeipmi 1.4.11 +- http://ftp.slackware.com/pub/slackware/slackware64-current/slackware64/n/libgcrypt-1.6.5-x86_64-1.txz +- fix: bug local ipmi timeout webgui to wait for ipmi (only affected systems without local ipmi) +- changed backup events to archive events +- add archive event page and switch ###2016.03.14 -- update freeipmi package +- update freeipmi 1.4.11 package remove init.d - fix virtual machines not auto starting due to /etc/init.d directory created by freeipmi package ###2016.03.13 - add test button for sending sample notification events @@ -98,14 +107,14 @@ The 'tablesorter' package file. This plugin uses freeipmi to display sensor readings --> - + &pkgURL;/freeipmi-1.4.11-x86_64-3.txz 6c7839886f7c7b0cc4947aaf6199d60e - -&pkgURL;/libgcrypt-1.5.5-x86_64-1_slack14.1.txz -636607a48bd342760289913bb7f34b54 + +&pkgURL;/freeipmi-1.5.1-x86_64-1.txz +f9df6ccd8c231e937ac4a8459ae91330 @@ -150,7 +159,9 @@ The 'install' script. #Verify unRAID Version source /etc/unraid-version -if [[ ${version:0:3} == 6.0 ]]; then +VER=${version:0:3} + +if [[ $VER == 6.0 ]]; then echo "unRAID version 6.1 or higher is required" exit 1 fi @@ -164,6 +175,16 @@ if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then &plgPATH;/&plgNAME;.md5 exit 1 else + if [[ $VER == 6.1 ]]; then + echo "\nInstalling dependencies for unRAID 6.1" + upgradepkg --install-new &plgpath;/freeipmi-1.4.11-x86_64-3.txz + fi + + if [[ $VER == 6.2 ]]; then + echo "\nInstalling dependencies for unRAID 6.2" + upgradepkg --install-new &plgpath;/freeipmi-1.5.1-x86_64-1.txz + fi + upgradepkg --install-new &plgPATH;/&plgNAME;.txz # Load impi drivers @@ -189,7 +210,7 @@ echo "" echo "-----------------------------------------------------------" echo " &name; has been installed." echo " This plugin requires Dynamix webGui to operate" -echo " Copyright 2015, &author;" +echo " Copyright 2016, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo "" diff --git a/plugins/ipmi.xml b/plugins/ipmi.xml index 15296fad..678c821c 100644 --- a/plugins/ipmi.xml +++ b/plugins/ipmi.xml @@ -11,8 +11,17 @@ The ipmi plugin allows you to view your system sensors and events using your ipm http://lime-technology.com/forum/index.php?topic=39787.0 https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/ipmi.png -2016-03-14 +2016-03-24 +###2016.03.24 +- update for 6.2 to freeipmi 1.5.1 +- new installs on 6.2 will work fine +- 6.2 users with previous install will need to reboot or install libgcrypt-1.6.5 (temporarily) to use freipmi 1.5.1 +- libgcrypt-1.6.5 is included with unRAID 6.2 and previous versions downgraded it to 1.5.5 to use freeipmi 1.4.11 +- http://ftp.slackware.com/pub/slackware/slackware64-current/slackware64/n/libgcrypt-1.6.5-x86_64-1.txz +- fix: bug local ipmi timeout webgui to wait for ipmi (only affected systems without local ipmi) +- changed backup events to archive events +- add archive event page and switch ###2016.03.14 - update freeipmi package - fix virtual machines not auto starting due to /etc/init.d directory created by freeipmi package