voxpupuli / puppet-wget

A puppet recipe for wget, a useful tool to download arbitary files from the web
Apache License 2.0
41 stars 114 forks source link

Resolves issue #19 added --no-cookies boolean and --header array parameters #29

Closed Limess closed 10 years ago

Limess commented 10 years ago

These options are necessary in certain cases, most commonly to bypass the checkbox security when downloading Oracle's JDK packages, e.g wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u5-b13/jdk-8u5-linux-x64.rpm

I avoided using stdlib as seems to be the preferred stance for this module.

carlossg commented 10 years ago

Thanks