rename plugin

This commit is contained in:
dmacias72 2016-11-12 11:53:20 -07:00
parent 5fc664f86c
commit 033cccb1e1
2 changed files with 14 additions and 15 deletions

View File

@ -1,7 +1,7 @@
<?xml version='1.0' standalone='yes'?> <?xml version='1.0' standalone='yes'?>
<!DOCTYPE PLUGIN [ <!DOCTYPE PLUGIN [
<!ENTITY name "ungit"> <!ENTITY name "ungit-plugin">
<!ENTITY author "dmacias72"> <!ENTITY author "dmacias72">
<!ENTITY version "2016.11.06"> <!ENTITY version "2016.11.06">
<!ENTITY launch "Settings/UnGit"> <!ENTITY launch "Settings/UnGit">
@ -9,7 +9,7 @@
<!ENTITY pluginURL "&gitURL;/plugins/&name;.plg"> <!ENTITY pluginURL "&gitURL;/plugins/&name;.plg">
<!ENTITY pkgURL "&gitURL;/source/packages"> <!ENTITY pkgURL "&gitURL;/source/packages">
<!ENTITY plgPATH "/boot/config/plugins/&name;"> <!ENTITY plgPATH "/boot/config/plugins/&name;">
<!ENTITY plgNAME "&name;-&version;-x86_64-1"> <!ENTITY pkgNAME "&name;-&version;-x86_64-1">
<!ENTITY emhttp "/usr/local/emhttp/plugins/&name;"> <!ENTITY emhttp "/usr/local/emhttp/plugins/&name;">
]> ]>
@ -35,7 +35,7 @@ This Plugin installs libvirt wake on lan for unRaid 6.1 All dependencies are in
<MD5>7c17ad5a7aab095c9dbfe54051772ded</MD5> <MD5>7c17ad5a7aab095c9dbfe54051772ded</MD5>
</FILE> </FILE>
<FILE Name="&plgPATH;/ungit-node-0.10.3-x86_64-1.txz" Run="/sbin/upgradepkg --install-new"> <FILE Name="&plgPATH;/ungit-node-0.10.3-x86_64-1.txz" Run="upgradepkg --install-new">
<URL>&pkgURL;/ungit-node-0.10.3-x86_64-1.txz</URL> <URL>&pkgURL;/ungit-node-0.10.3-x86_64-1.txz</URL>
<MD5>707d35232f912ec3a293d8ffa1f7dccd</MD5> <MD5>707d35232f912ec3a293d8ffa1f7dccd</MD5>
</FILE> </FILE>
@ -52,15 +52,15 @@ PORT="8448"
<!-- <!--
The 'plugin' package file. The 'plugin' package file.
--> -->
<FILE Name="&plgPATH;/&plgNAME;.txz"> <FILE Name="&plgPATH;/&pkgNAME;.txz">
<URL>&gitURL;/archive/&plgNAME;.txz</URL> <URL>&gitURL;/archive/&pkgNAME;.txz</URL>
</FILE> </FILE>
<!-- <!--
The 'plugin' package MD5 hash. The 'plugin' package MD5 hash.
--> -->
<FILE Name="&plgPATH;/&plgNAME;.md5"> <FILE Name="&plgPATH;/&pkgNAME;.md5">
<URL>&gitURL;/archive/&plgNAME;.md5</URL> <URL>&gitURL;/archive/&pkgNAME;.md5</URL>
</FILE> </FILE>
<!-- <!--
@ -78,16 +78,16 @@ if [[ $VER == 6.0 ]]; then
fi fi
# Verify and install plugin package # Verify and install plugin package
sum1=$(/usr/bin/md5sum &plgPATH;/&plgNAME;.txz) sum1=$(/usr/bin/md5sum &plgPATH;/&pkgNAME;.txz)
sum2=$(/usr/bin/cat &plgPATH;/&plgNAME;.md5) sum2=$(/usr/bin/cat &plgPATH;/&pkgNAME;.md5)
if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then
echo "Wrong 'plugin' package md5 hash." echo "Wrong 'plugin' package md5 hash."
rm &plgPATH;/&plgNAME;.txz rm &plgPATH;/&pkgNAME;.txz
rm &plgPATH;/&plgNAME;.md5 rm &plgPATH;/&pkgNAME;.md5
exit 1 exit 1
else else
upgradepkg --install-new &plgPATH;/&plgNAME;.txz upgradepkg --install-new &plgPATH;/&pkgNAME;.txz
#restart event daemon #restart event daemon
echo "starting ungit..." echo "starting ungit..."
@ -119,13 +119,12 @@ The 'remove' script.
echo "stopping ungit..." echo "stopping ungit..."
at -M -f &emhttp;/scripts/stop now 2>/dev/null at -M -f &emhttp;/scripts/stop now 2>/dev/null
removepkg &plgPATH;/&plgNAME;.txz echo "removing ungit..."
removepkg &plgPATH;/&pkgNAME;.txz
rm -rf &emhttp; rm -rf &emhttp;
rm -f &plgPATH;/*.txz \ rm -f &plgPATH;/*.txz \
&plgPATH;/*.md5 &plgPATH;/*.md5
echo "removing ungit..."
npm -g uninstall ungit
echo "" echo ""
echo "-----------------------------------------------------------" echo "-----------------------------------------------------------"

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB