mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 05:30:07 -06:00
53 lines
1.7 KiB
XML
53 lines
1.7 KiB
XML
<?xml version='1.0' standalone='yes'?>
|
|
|
|
<!DOCTYPE PLUGIN [
|
|
<!ENTITY name "dynamix">
|
|
<!ENTITY author "Bergware">
|
|
<!ENTITY version "2016.07.27"> <!-- Intended new version of Dynamix webGUI -->
|
|
<!ENTITY unRAID "6.2.0-rc3"> <!-- Change to new unRAID version when issued together -->
|
|
<!ENTITY pluginURL "https://raw.github.com/limetech/&name;-6.2/master/plugins/&name;/&name;.plg">
|
|
]>
|
|
|
|
<PLUGIN name="&name;" author="&author;" version="&version;" unRAID="&unRAID;" pluginURL="&pluginURL;">
|
|
|
|
<CHANGES>
|
|
Dynamix webGui v&version;
|
|
-------------------------
|
|
|
|
Please refer to
|
|
**<a href="https://github.com/limetech/&name;-6.2/commits/master" target="_blank">commit history</a>**
|
|
on github.
|
|
</CHANGES>
|
|
|
|
<!-- Get from github as tarball. -->
|
|
<FILE Name="/boot/config/plugins/&name;/&name;-&version;.tar.gz">
|
|
<URL>"https://github.com/limetech/&name;/archive/&version;.tar.gz"</URL>
|
|
</FILE>
|
|
|
|
<!-- The 'install' script. -->
|
|
<FILE Run="/bin/bash">
|
|
<INLINE>
|
|
rm -r /tmp/plugins/&name;-&version; 2>/dev/null
|
|
tar -xf /boot/config/plugins/&name;/&name;-&version;.tar.gz -C /tmp/plugins
|
|
mv /tmp/plugins/&name;-&version;/* /usr/local/emhttp 2>/dev/null
|
|
for Plugin in /tmp/plugins/&name;-&version;/plugins/* ; do
|
|
rm -r /usr/local/emhttp/plugins/$(basename $Plugin) 2>/dev/null
|
|
mv $Plugin /usr/local/emhttp/plugins/$(basename $Plugin)
|
|
done
|
|
rm -r /tmp/plugins/&name;-&version;
|
|
find /boot/config/plugins/&name; -type f -iname "*.tar.gz" ! -iname "&name;-&version;.tar.gz" -delete
|
|
</INLINE>
|
|
</FILE>
|
|
|
|
<!-- The 'remove' script. -->
|
|
<FILE Run="/bin/bash" Method="remove">
|
|
<INLINE>
|
|
rm -r /boot/config/plugins/&name;/&name;-&version;.tar.gz 2>/dev/null
|
|
echo "*********************"
|
|
echo "Please reboot server."
|
|
echo "*********************"
|
|
</INLINE>
|
|
</FILE>
|
|
|
|
</PLUGIN>
|