]> ###2016.01.22 - update install and remove scripts - check if config exists - create a default config file ###2016.01.02 - fix not starting with array ###2015.12.21a - fix config file and start/stop - add unRAID version check - add md5 package ckeck - convert install and remove scripts ###2015.12.01 - added fix for other packet sizes ###2015.11.18 - update python to 2.7.9 ###2015.11.17 - fix start and stop event permissions ###2015.11.16 - added promiscuous mode to listen for all packets - will recieve all ether proto 0x0842 packets now ###2015.11.15 - added support for ethertype 0x0842 - tested with ether-wake but asus router still not waking ###2015.11.14c - fix plugin page image and link - pkg variable typo ###2015.11.14 - initial commit https://raw.githubusercontent.com/eschultz/unraid6-nerdpack/master/packages/python-2.7.9-x86_64-1.txz 7d5f6d12757c59e5f08ca25bd63aab78 &pkgURL;/libvirt-python-1.2.18-x86_64-1ponce.txz 4198c7784a57d7ff80fb1d53811ceb5e &pkgURL;/libpcap-1.4.0-x86_64-1.txz cbe651aff5d49d1c3a5a7ad6a4262393 &pkgURL;/pylibpcap-0.6.2-x86_64-1_slack.txz 2531f44126b3c05d76782c9eedba9988 &gitURL;/archive/&plgname;.txz &gitURL;/archive/&plgname;.md5 #Verify unRAID Version source /etc/unraid-version if [[ ${version:0:3} == 6.0 ]]; then echo "unRAID version 6.1 or higher is required" exit 1 fi # Verify and install plugin package sum1=$(/usr/bin/md5sum &plgpath;/&plgname;.txz) sum2=$(/usr/bin/cat &plgpath;/&plgname;.md5) if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then echo "Wrong 'plugin' package md5 hash." rm &plgpath;/&plgname;.txz rm &plgpath;/&plgname;.md5 exit 1 else upgradepkg --install-new &plgpath;/&plgname;.txz fi # Update file permissions of scripts chmod +0755 /usr/local/emhttp/plugins/&name;/scripts/* # add menu to VM Manager sed -i -- 's/OtherSettings/VMManager:1/g' /usr/local/emhttp/plugins/dynamix.vm.manager/VMSettings.page # 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 " &name; has been installed." echo " This plugin requires Dynamix webGui to operate" echo " Copyright 2016, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo "" &emhttp;/scripts/stop removepkg &plgpath;/&plgname;.txz rm -rf &emhttp; rm -f &plgpath;/&plgname;.txz rm -f &plgpath;/&plgname;.md5 #remove installed packages removepkg &plgpath;/*.txz rm -f &plgpath;/*.txz # restore VM Manager Menu sed -i -- 's/VMManager:1/OtherSettings/g' /usr/local/emhttp/plugins/dynamix.vm.manager/VMSettings.page echo "" echo "-----------------------------------------------------------" echo " &name; has been removed." echo " Copyright 2016, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo ""