diff --git a/roles/product_common/defaults/main.yml b/roles/product_common/defaults/main.yml index 9c6d676..bbbc219 100644 --- a/roles/product_common/defaults/main.yml +++ b/roles/product_common/defaults/main.yml @@ -5,7 +5,7 @@ postgres_version: "9.6" # Disable these when using the product installer, otherwise we end up # fighting with it. atl_use_system_jdk: false -atl_use_system_jdk_flavor: "temurin" # amazon linux 2023 also supports "corretto" +atl_system_jdk_vendor: "temurin" # amazon linux 2023 also supports "corretto" # Ubuntu and Ansible use different architecture nomenclature; provide # an easy method for translating between them diff --git a/roles/product_common/tasks/amazon-2023.yml b/roles/product_common/tasks/amazon-2023.yml index 1b7a1e2..13a10f7 100644 --- a/roles/product_common/tasks/amazon-2023.yml +++ b/roles/product_common/tasks/amazon-2023.yml @@ -126,7 +126,7 @@ when: - atl_use_system_jdk | bool - - atl_use_system_jdk_flavor == "temurin" + - atl_system_jdk_vendor == "temurin" tags: - runtime_pkg @@ -146,7 +146,7 @@ priority: 99 when: - atl_use_system_jdk | bool - - atl_use_system_jdk_flavor == "corretto" + - atl_system_jdk_vendor == "corretto" tags: - runtime_pkg