]> ##&name; ###&version; - initial commit &gitURL;/packages/6.2/nodejs-4.6.0-x86_64-1_slonly.txz 8a7dae6947e415f2dd01bf4d2a57b6f4 &gitURL;/packages/6.1/nodejs-4.2.4-x86_64-1_slack.txz 7c17ad5a7aab095c9dbfe54051772ded &pkgURL;/ungit-node-0.10.3-x86_64-1.txz 707d35232f912ec3a293d8ffa1f7dccd &gitURL;/archive/&pkgNAME;.txz &gitURL;/archive/&pkgNAME;.md5 #Verify unRAID Version source /etc/unraid-version VER=${version:0:3} if [[ $VER == 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;/&pkgNAME;.txz) sum2=$(/usr/bin/cat &plgPATH;/&pkgNAME;.md5) if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then echo "Wrong 'plugin' package md5 hash." rm &plgPATH;/&pkgNAME;.txz rm &plgPATH;/&pkgNAME;.md5 exit 1 else upgradepkg --install-new &plgPATH;/&pkgNAME;.txz #restart event daemon echo "starting ungit..." at -M -f &emhttp;/scripts/restart now 2>/dev/null # 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 "" fi # stop service echo "stopping ungit..." at -M -f &emhttp;/scripts/stop now 2>/dev/null echo "removing ungit..." removepkg &plgPATH;/&pkgNAME;.txz rm -rf &emhttp; rm -f &plgPATH;/*.txz \ &plgPATH;/*.md5 echo "" echo "-----------------------------------------------------------" echo " &name; has been removed." echo " Copyright 2016, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo ""