update minor bugs

This commit is contained in:
Derek Macias
2015-12-14 01:28:47 -07:00
parent e33f7ce6b5
commit 5b016ac943
8 changed files with 69 additions and 112 deletions

View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "NerdPack">
<!ENTITY author "dmacias72">
<!ENTITY version "2015.12.13">
<!ENTITY version "2015.12.14">
<!ENTITY launch "Settings/&name;">
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
@ -17,6 +17,8 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;">
<CHANGES>
###2015.12.14
- fix some minor bugs
###2015.12.13
- initial commit of wrapper plugin for packages in repo
###2015.12.07
@ -89,10 +91,6 @@ The 'install' script.
-->
<FILE Run="/bin/bash" Method="install">
<INLINE>
if [ ! -d &emhttp; ]; then
mkdir -p &emhttp;
fi
# Verify and install plugin package
sum1=$(/usr/bin/md5sum &plgpath;/&plgname;.txz)
sum2=$(/usr/bin/cat &plgpath;/&plgname;.md5)
@ -128,10 +126,10 @@ The 'remove' script.
-->
<FILE Run="/bin/bash" Method="remove">
<INLINE>
removepkg &plgpath;/&plgname;.txz
rm -rf &emhttp;
rm -f &plgpath;/&plgname;.txz
rm -f &plgpath;/&plgname;.md5
removepkg &plgpath;/&plgname;.txz \
&plgpath;/&pkg;
rm -rf &emhttp; \
-rf &plgpath;
echo ""
echo "-----------------------------------------------------------"

View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [
<!ENTITY name "ipmitool-plugin">
<!ENTITY author "dmacias72">
<!ENTITY version "2015.12.13a">
<!ENTITY version "2015.12.14">
<!ENTITY launch "Tools/IPMItool">
<!ENTITY gitURL "https://raw.githubusercontent.com/&author;/unRAID-plugins/master">
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
@ -18,7 +18,7 @@
<PLUGIN name="&name;" author="&author;" version="&version;" launch="&launch;" pluginURL="&pluginURL;">
<CHANGES>
###2015.12.13a
###2015.12.14
- make sure and remove old plugin
###2015.12.11
- change repo
@ -73,12 +73,8 @@ The 'install' script.
-->
<FILE Run="/bin/bash" Method="install">
<INLINE>
if [ ! -d &emhttp; ]; then
mkdir -p &emhttp;
fi
if [ ! -d /usr/local/emhttp/plugins/ipmitool ]; then
mkdir -p /usr/local/emhttp/plugins/ipmitool
rm -rf /usr/local/emhttp/plugins/ipmitool
fi
# Verify and install plugin package

View File

@ -11,8 +11,10 @@ The ipmitool plugin allows you to view your system sensors and events using your
</Description>
<Support>http://lime-technology.com/forum/index.php?topic=39787.0</Support>
<Icon>https://raw.githubusercontent.com/dmacias72/dmacias-plugin-repository/master/ipmitool-plugin.png</Icon>
<Date>2015-12-11</Date>
<Date>2015-12-14</Date>
<Changes>
###2015.12.14
- make sure to remove old plugin
###2015.12.11
- change repo
- change install and remove method