Esri / arcgis-cookbook

Chef cookbooks for ArcGIS
Apache License 2.0
297 stars 116 forks source link

The arcgis-enterprise cookbook Linux based role json files default to using Oracle JDK instead of OpenJDK #232

Closed cameronkroeker closed 4 years ago

cameronkroeker commented 4 years ago

With recent changes to Oracle licensing, the "accept_oracle_download_terms":true may be impacted.

The following role json files installs/configures Oracle JDK instead of OpenJDK:

To use OpenJDK replace the following block:

"java":{
    "install_flavor":"oracle",
    "jdk_version":"8",
    "oracle":{
      "accept_oracle_download_terms":true
    }
  },

with:

"java":{
    "install_flavor":"openjdk",
    "jdk_version":"8"
  },
cameronkroeker commented 4 years ago

fixed in v3.5.0.