update libvirtwol plugin
This commit is contained in:
parent
ad03024145
commit
00a6e0beb8
|
@ -3,7 +3,7 @@
|
||||||
<!DOCTYPE PLUGIN [
|
<!DOCTYPE PLUGIN [
|
||||||
<!ENTITY name "libvirtwol">
|
<!ENTITY name "libvirtwol">
|
||||||
<!ENTITY author "dmacias72">
|
<!ENTITY author "dmacias72">
|
||||||
<!ENTITY version "2017.01.30a">
|
<!ENTITY version "2017.04.11">
|
||||||
<!ENTITY launch "Settings/VMSettings">
|
<!ENTITY launch "Settings/VMSettings">
|
||||||
<!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">
|
||||||
|
@ -21,7 +21,9 @@ This Plugin installs libvirt wake on lan for unRaid 6.1 All dependencies are in
|
||||||
|
|
||||||
<CHANGES>
|
<CHANGES>
|
||||||
##&name;
|
##&name;
|
||||||
###&version;
|
###2017.04.11
|
||||||
|
- update python for 6.2, 6.3 and 6.4
|
||||||
|
###2017.01.30a
|
||||||
- harden code for XSS and CSRF vulnerabilities
|
- harden code for XSS and CSRF vulnerabilities
|
||||||
- fix form not defined and submitting
|
- fix form not defined and submitting
|
||||||
- update libvirt-python to 2.5.0 for 6.3
|
- update libvirt-python to 2.5.0 for 6.3
|
||||||
|
@ -86,14 +88,14 @@ This Plugin installs libvirt wake on lan for unRaid 6.1 All dependencies are in
|
||||||
- initial commit
|
- initial commit
|
||||||
</CHANGES>
|
</CHANGES>
|
||||||
|
|
||||||
<FILE Name="&plgPATH;/python-2.7.13-x86_64-1.txz" Min="6.3" Run="upgradepkg --install-new">
|
<FILE Name="&plgPATH;/python-2.7.13-x86_64-1.txz" Min="6.4" Run="upgradepkg --install-new">
|
||||||
<URL>&gitURL;/packages/6.3/python-2.7.13-x86_64-1.txz</URL>
|
<URL>&gitURL;/packages/6.4/python-2.7.13-x86_64-1.txz</URL>
|
||||||
<MD5>67d18569672de5dd48e4dda2f7ce0e88</MD5>
|
<MD5>67d18569672de5dd48e4dda2f7ce0e88</MD5>
|
||||||
</FILE>
|
</FILE>
|
||||||
|
|
||||||
<FILE Name="&plgPATH;/python-2.7.13-x86_64-1.txz" Min="6.2" Max="6.2.99" Run="upgradepkg --install-new">
|
<FILE Name="&plgPATH;/python-2.7.13a-x86_64-2.txz" Min="6.2" Max="6.3.99" Run="upgradepkg --install-new">
|
||||||
<URL>&gitURL;/packages/6.2/python-2.7.13-x86_64-1.txz</URL>
|
<URL>&gitURL;/packages/6.3/python-2.7.13a-x86_64-2.txz</URL>
|
||||||
<MD5>67d18569672de5dd48e4dda2f7ce0e88</MD5>
|
<MD5>576078a891a9c50d19e04b1b2249dc05</MD5>
|
||||||
</FILE>
|
</FILE>
|
||||||
|
|
||||||
<FILE Name="&plgPATH;/python-2.7.9-x86_64-1.txz" Min="6.1" Max="6.1.99" Run="upgradepkg --install-new">
|
<FILE Name="&plgPATH;/python-2.7.9-x86_64-1.txz" Min="6.1" Max="6.1.99" Run="upgradepkg --install-new">
|
||||||
|
|
|
@ -7,12 +7,14 @@
|
||||||
<Category>Tools:System</Category>
|
<Category>Tools:System</Category>
|
||||||
<Name>Virtual Machine Wake On Lan</Name>
|
<Name>Virtual Machine Wake On Lan</Name>
|
||||||
<Description>
|
<Description>
|
||||||
Wake On Lan for Virtual Machines. Allows you to recieve a wake on lan packet to wake or start up kvm virtual machines.
|
Wake On Lan for Virtual Machines. Allows you to recieve a wake on lan packet to wake or start up kvm virtual machines.
|
||||||
</Description>
|
</Description>
|
||||||
<Support>http://lime-technology.com/forum/index.php?topic=44017.0</Support>
|
<Support>http://lime-technology.com/forum/index.php?topic=44017.0</Support>
|
||||||
<Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/libvirtwol.png</Icon>
|
<Icon>https://raw.githubusercontent.com/dmacias72/unRAID-plugins/master/plugins/libvirtwol.png</Icon>
|
||||||
<Date>2017.01.30</Date>
|
<Date>2017.04.11</Date>
|
||||||
<Changes>
|
<Changes>
|
||||||
|
###2017.04.11
|
||||||
|
- update python for 6.2, 6.3 and 6.4
|
||||||
###2017.01.30a
|
###2017.01.30a
|
||||||
- harden code for XSS and CSRF vulnerabilities
|
- harden code for XSS and CSRF vulnerabilities
|
||||||
- fix form not defined and submitting
|
- fix form not defined and submitting
|
||||||
|
@ -37,7 +39,7 @@ Wake On Lan for Virtual Machines. Allows you to recieve a wake on lan packet to
|
||||||
- add dynamix plugin API
|
- add dynamix plugin API
|
||||||
- add white-space: normal to fix status css formatting
|
- add white-space: normal to fix status css formatting
|
||||||
###2016.03.23
|
###2016.03.23
|
||||||
- remove libpcap from 6.2 install
|
- remove libpcap from 6.2 install
|
||||||
###2016.03.19
|
###2016.03.19
|
||||||
- add wake on lan to advanced view
|
- add wake on lan to advanced view
|
||||||
###2016.03.14
|
###2016.03.14
|
||||||
|
@ -66,7 +68,7 @@ Wake On Lan for Virtual Machines. Allows you to recieve a wake on lan packet to
|
||||||
###2015.11.17
|
###2015.11.17
|
||||||
- fix start and stop event permissions
|
- fix start and stop event permissions
|
||||||
###2015.11.16
|
###2015.11.16
|
||||||
- added promiscuous mode to listen for all packets
|
- added promiscuous mode to listen for all packets
|
||||||
- will recieve all ether proto 0x0842 packets now
|
- will recieve all ether proto 0x0842 packets now
|
||||||
###2015.11.15
|
###2015.11.15
|
||||||
- added support for ethertype 0x0842
|
- added support for ethertype 0x0842
|
||||||
|
|
Loading…
Reference in New Issue
Block a user