tylerwalts / puppet-jdk_oracle

Puppet module to install JDK from oracle using wget
Other
15 stars 54 forks source link

Feature/custom url #69

Closed vfoucault closed 7 years ago

vfoucault commented 7 years ago

Update module to add the a custom URL Feature.

class { 'jdk_oracle':
  jce                              => true,
  default                    => true,
  download_url     => 'https://nexus.corp/java',
  proxy_host           => 'http://proxyhost:3128',
  version_update => '102',
  version_build      => '14',
}

Refactored the whole module to use

Refactored spec tests Added Acceptance tests with beaker

Working under debian 8 and centos 6.7 for jdk8/jdk7/jre8 with/without JCE

Should work on major RedHat based release as well as Debian.

* Small travis issue with unzip under debian8 for jdk7. not clue so far * not tested with suse **

tylerwalts commented 7 years ago

Thank you, this looks great so far but give me a bit of time to test it out after work.

vfoucault commented 7 years ago

No worries, Do not hesitate to contact me if needed. I'm not familiar with travis, witch explains the related commits.