update plg

This commit is contained in:
dmacias72 2016-03-14 23:52:18 -06:00
parent 32d1f68bdf
commit 637aa261c8

33
plugins/NerdPack.plg Executable file → Normal file
View File

@ -3,7 +3,7 @@
<!DOCTYPE PLUGIN [ <!DOCTYPE PLUGIN [
<!ENTITY name "NerdPack"> <!ENTITY name "NerdPack">
<!ENTITY author "dmacias72"> <!ENTITY author "dmacias72">
<!ENTITY version "2016.03.14"> <!ENTITY version "2016.02.23">
<!ENTITY launch "Settings/&name;"> <!ENTITY launch "Settings/&name;">
<!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">
@ -16,9 +16,6 @@
<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.03.14
- update plugin for unRAID 6.2 compatibility
- update packages for 6.2
###2016.02.23 ###2016.02.23
- fix: search for a partial match of packages used in other plugins - fix: search for a partial match of packages used in other plugins
###2016.02.17 ###2016.02.17
@ -141,11 +138,10 @@ The 'tablesorter' package file.
<!-- <!--
The Github repo packages file. The Github repo packages file.
-->
<FILE Name="&plgpath;/packages/packages.json"> <FILE Name="&plgpath;/packages/packages.json">
<URL>&gitURL;/plugins/packages.json</URL> <URL>&gitURL;/plugins/packages.json</URL>
</FILE> </FILE>
-->
<!-- <!--
The package description file. The package description file.
@ -175,8 +171,7 @@ The 'install' script.
<INLINE> <INLINE>
#Verify unRAID Version #Verify unRAID Version
source /etc/unraid-version source /etc/unraid-version
VER=${version:0:3} if [[ ${version:0:3} == 6.0 ]]; then
if [[ $VER == 6.0 ]]; then
echo "unRAID version 6.1 or higher is required" echo "unRAID version 6.1 or higher is required"
exit 1 exit 1
fi fi
@ -190,21 +185,18 @@ if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then
&plgpath;/&plgname;.md5 &plgpath;/&plgname;.md5
exit 1 exit 1
else else
if [ ! -d &plgpath;/packages/$VER ]; then
mkdir &plgpath;/packages/$VER
fi
if [[ ${version:0:3} == 6.1 ]]; then
mv &plgpath;/packages/*txz &plgpath;/packages/6.1
fi
upgradepkg --install-new &plgpath;/&plgname;.txz upgradepkg --install-new &plgpath;/&plgname;.txz
fi
/usr/sbin/packagemanager if [ ! -d &plgpath;/packages ]; then
mkdir &plgpath;/packages
fi
# Cleaning old source files /usr/sbin/packagemanager
find &plgpath;/ -type f -iname "&name;*.txz" ! -iname "*&version;*" -delete
find &plgpath;/ -type f -iname "&name;*.md5" ! -iname "*&version;*" -delete # 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 "-----------------------------------------------------------" echo "-----------------------------------------------------------"
@ -214,7 +206,6 @@ echo " Copyright 2016, &author;, eschultz"
echo " Version: &version;" echo " Version: &version;"
echo "-----------------------------------------------------------" echo "-----------------------------------------------------------"
echo "" echo ""
fi
</INLINE> </INLINE>
</FILE> </FILE>