RackHD 3rd party license

Jenkins Job is here : http://rackhdci.lss.emc.com/job/BuildRelease/job/license_of_3rd_party_tools/



3rd Party License - RackHD 

EMC Internal: http://rackhdci.lss.emc.com/job/BuildRelease/job/license_of_3rd_party_tools/


  File Modified

Microsoft Excel Spreadsheet license-checker-20170112.xlsx

Feb 14, 2017 by Former user

Microsoft Excel Spreadsheet license_checker_20170314.xlsx

Mar 14, 2017 by Former user

File 2.3.0_RackHD-3rd-party-license-list.7z

Apr 25, 2017 by Former user

ZIP Archive 2.5.0-3rd-party-license.zip

May 15, 2017 by Former user

ZIP Archive 2.9.0-3rd-party-license.zip

Jun 12, 2017 by Former user



3rd Party License - before RackHD 2.2.0

Office Excel: spreadsheet preview is finally here!

You can now display this file as a spreadsheet, instead of a PDF. Re-upload license_checker_20170314.xlsx to display the new preview. You can access the file here.




License Checker
mkdir ~/tmp

cd ~/tmp


export LIST="on-taskgraph on-http on-tftp on-syslog on-dhcp-proxy on-core on-tasks"
for i in $LIST;
do
  git clone https://github.com/RackHD/$i.git
done



npm install license-checker

# Only available inside DellEMC
git clone https://eos2git.cec.lab.emc.com/panp/pmtools.git

cd pmtools
npm install
cd ..

cp pmtools/workspace.json .
#[Peter's NOTE 16/09/18]workspace.json is out of date. 


./pmtools/pmtool sync


 

 

#independent NodeJS application repositories:

export LIST="on-taskgraph on-http on-tftp on-syslog on-dhcp-proxy"

for i in $LIST; do pushd ~/tmp/$i; npm install; npm prune --production; popd; done

for i in $LIST; do pushd $i; ~/tmp/node_modules/.bin/license-checker --csv > ~/tmp/audit.$i.csv; popd; done