update ipmitool plugin

This commit is contained in:
Derek Macias 2016-02-15 16:36:28 -07:00
parent 11d905a566
commit 04620e6082
2 changed files with 15 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [ <!DOCTYPE PLUGIN [
<!ENTITY name "ipmitool-plugin"> <!ENTITY name "ipmitool-plugin">
<!ENTITY author "dmacias72"> <!ENTITY author "dmacias72">
<!ENTITY version "2016.01.17"> <!ENTITY version "2016.02.15a">
<!ENTITY launch "Tools/IPMItool"> <!ENTITY launch "Tools/IPMItool">
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master"> <!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg"> <!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
@ -18,6 +18,8 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;"> <PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;">
<CHANGES> <CHANGES>
###2016.02.15a
- fix: array combine error for sensors with non uniform data
###2016.02.15 ###2016.02.15
- update tablesorter - update tablesorter
- add: fan control page and status - add: fan control page and status
@ -143,6 +145,16 @@ echo "loading ipmi drivers..."
modprobe ipmi_si modprobe ipmi_si
modprobe ipmi_devintf modprobe ipmi_devintf
# Start scripts if enabled
<![CDATA[
echo "starting ipmievd..."
/etc/rc.d/rc.ipmievd start >/dev/null 2>&1 < /dev/null &
sleep 1
echo "starting ipmitail..."
setsid /etc/rc.d/rc.ipmitail start >/dev/null 2>&1 < /dev/null &
sleep 1
]]>
# Cleaning old source files # Cleaning old source files
find &plgPATH;/ -type f -iname "&name;*.txz" ! -iname "*&version;*" -delete find &plgPATH;/ -type f -iname "&name;*.txz" ! -iname "*&version;*" -delete
find &plgPATH;/ -type f -iname "&name;*.md5" ! -iname "*&version;*" -delete find &plgPATH;/ -type f -iname "&name;*.md5" ! -iname "*&version;*" -delete

View File

@ -13,6 +13,8 @@ The ipmitool plugin allows you to view your system sensors and events using your
<Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/ipmitool-plugin.png</Icon> <Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/ipmitool-plugin.png</Icon>
<Date>2016-02-15</Date> <Date>2016-02-15</Date>
<Changes> <Changes>
###2016.02.15a
- fix: array combine error for sensors with non uniform data
###2016.02.15 ###2016.02.15
- update tablesorter - update tablesorter
- add: fan control page and status - add: fan control page and status