├── .ansible-lint ├── .cookiecutter.yml ├── .gitattributes ├── .github ├── .pull_request_template.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation_report.md │ └── feature_request.md └── workflows │ └── build.yml ├── .gitignore ├── .gitlab-ci.yml ├── .yamllint ├── LICENSE ├── README.md ├── defaults └── main.yml ├── meta └── main.yml ├── molecule ├── cloud-aws-adoptium-11 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-adoptium-12 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-adoptium-8 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-adoptium-windows │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-corretto-11 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-corretto-8 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-direct-11 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-direct-12 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-direct-6 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-direct-7 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-direct-8 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-dragonwell8 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-openjdk-11 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-openjdk-12 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-openjdk-8 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-openjdk-ga │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-openjdk-windows-ga │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-sapjvm-8 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-sapmachine-11 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-sapmachine-12 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-sapmachine-13 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-sapmachine-windows │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-windows-11 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-windows-12 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-windows-8 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-aws-windows-openjdk11-chocolatey │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-windows-openjdk13-chocolatey │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-windows-sapjvm-8 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-windows-zulu-12 │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-windows-zulu12-chocolatey │ ├── molecule.yml │ └── playbook.yml ├── cloud-aws-zulu-12 │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-adoptium-windows │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-openjdk-windows-ga │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-sapmachine-windows │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-windows-11 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-azure-windows-12 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-azure-windows-8 │ ├── molecule.yml │ ├── playbook.yml │ └── prepare.yml ├── cloud-azure-windows-corretto │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-windows-openjdk14-chocolatey │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-windows-sapjvm-8 │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-windows-zulu-12 │ ├── molecule.yml │ └── playbook.yml ├── cloud-azure-windows-zulu12-chocolatey │ ├── molecule.yml │ └── playbook.yml ├── cloud-epc-delegated │ ├── molecule.yml │ └── playbook.yml ├── default │ ├── Dockerfile.j2 │ ├── molecule.yml │ └── playbook.yml └── resources │ ├── prepare.yml │ └── tests │ ├── verify.yml │ └── verify_win.yml ├── requirements.yml ├── sonar-project.properties ├── tasks ├── Linux │ ├── fetch │ │ ├── adoptium-fallback.yml │ │ ├── corretto-fallback.yml │ │ ├── dragonwell8-fallback.yml │ │ ├── local.yml │ │ ├── openjdk-fallback.yml │ │ ├── repositories.yml │ │ ├── s3.yml │ │ ├── sapjvm-fallback.yml │ │ ├── sapmachine-fallback.yml │ │ ├── security-fetch │ │ │ ├── security-fetch-local.yml │ │ │ ├── security-fetch-oracle_java-fallback.yml │ │ │ ├── security-fetch-s3.yml │ │ │ └── security-fetch-web.yml │ │ ├── web.yml │ │ └── zulu-fallback.yml │ ├── finalize_paths.yml │ ├── install │ │ ├── Amazon_2_corretto_8.yml │ │ ├── Debian.yml │ │ ├── Debian_adoptium.yml │ │ ├── RedHat.yml │ │ ├── RedHat_adoptium.yml │ │ ├── Suse.yml │ │ ├── sapjvm_tarball.yml │ │ └── tarball.yml │ ├── security_policy.yml │ ├── system.yml │ └── system_repositories.yml ├── Win32NT │ ├── fetch │ │ ├── adoptium-fallback.yml │ │ ├── chocolatey.yml │ │ ├── corretto-fallback.yml │ │ ├── local.yml │ │ ├── openjdk-fallback.yml │ │ ├── sapjvm-fallback.yml │ │ ├── sapmachine-fallback.yml │ │ ├── security-fetch │ │ │ ├── security-winfetch-local.yml │ │ │ ├── security-winfetch-oracle_java-fallback.yml │ │ │ └── security-winfetch-web.yml │ │ ├── web.yml │ │ └── zulu-fallback.yml │ ├── finalize_paths.yml │ ├── install │ │ ├── adoptium_tarball.yml │ │ ├── chocolatey.yml │ │ ├── corretto_package.yml │ │ ├── package.yml │ │ ├── sapjvm_tarball.yml │ │ ├── sapmachine_tarball.yml │ │ ├── tarball.yml │ │ └── zulu_tarball.yml │ ├── security_policy.yml │ ├── system.yml │ └── system_chocolatey.yml ├── main.yml ├── not-supported.yml └── unknown-transport.yml ├── templates └── java.sh.j2 └── vars ├── Debian.yml ├── RedHat.yml ├── Suse.yml ├── Windows.yml ├── default.yml ├── java_distro_configs ├── adoptium_vars.yml ├── corretto_vars.yml ├── dragonwell8_vars.yml ├── openjdk_vars.yml ├── oracle_java_vars.yml ├── sapjvm_vars.yml ├── sapmachine_vars.yml └── zulu_vars.yml ├── java_parts.yml └── main.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.cookiecutter.yml: -------------------------------------------------------------------------------- 1 | --- 2 | default_context: 3 | role_name: java 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.github/.pull_request_template.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.github/ISSUE_TEMPLATE/documentation_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-11/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-11/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-11/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-11/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-11/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-11/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-12/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-12/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-windows/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-windows/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-adoptium-windows/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-adoptium-windows/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-corretto-11/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-corretto-11/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-corretto-11/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-corretto-11/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-corretto-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-corretto-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-corretto-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-corretto-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-11/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-11/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-11/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-11/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-11/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-11/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-12/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-12/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-6/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-6/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-6/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-6/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-7/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-7/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-7/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-7/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-direct-8/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-direct-8/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-dragonwell8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-dragonwell8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-dragonwell8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-dragonwell8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-11/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-11/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-11/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-11/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-ga/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-ga/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-ga/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-ga/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-windows-ga/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-windows-ga/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-openjdk-windows-ga/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-openjdk-windows-ga/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapjvm-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapjvm-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapjvm-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapjvm-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapjvm-8/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapjvm-8/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-11/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-11/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-11/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-11/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-12/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-12/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-13/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-13/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-13/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-13/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-13/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-13/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-windows/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-windows/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-sapmachine-windows/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-sapmachine-windows/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-11/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-11/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-11/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-11/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-11/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-11/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-12/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-12/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-8/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-8/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-openjdk11-chocolatey/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-openjdk11-chocolatey/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-openjdk11-chocolatey/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-openjdk11-chocolatey/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-openjdk13-chocolatey/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-openjdk13-chocolatey/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-openjdk13-chocolatey/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-openjdk13-chocolatey/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-sapjvm-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-sapjvm-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-sapjvm-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-sapjvm-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-zulu-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-zulu-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-zulu-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-zulu-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-zulu12-chocolatey/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-zulu12-chocolatey/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-windows-zulu12-chocolatey/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-windows-zulu12-chocolatey/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-zulu-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-zulu-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-aws-zulu-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-aws-zulu-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-adoptium-windows/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-adoptium-windows/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-adoptium-windows/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-adoptium-windows/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-openjdk-windows-ga/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-openjdk-windows-ga/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-openjdk-windows-ga/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-openjdk-windows-ga/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-sapmachine-windows/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-sapmachine-windows/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-sapmachine-windows/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-sapmachine-windows/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-11/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-11/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-11/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-11/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-11/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-11/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-12/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-12/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-8/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-8/prepare.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-corretto/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-corretto/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-corretto/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-corretto/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-openjdk14-chocolatey/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-openjdk14-chocolatey/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-openjdk14-chocolatey/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-openjdk14-chocolatey/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-sapjvm-8/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-sapjvm-8/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-sapjvm-8/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-sapjvm-8/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-zulu-12/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-zulu-12/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-zulu-12/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-zulu-12/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-zulu12-chocolatey/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-zulu12-chocolatey/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-azure-windows-zulu12-chocolatey/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-azure-windows-zulu12-chocolatey/playbook.yml -------------------------------------------------------------------------------- /molecule/cloud-epc-delegated/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-epc-delegated/molecule.yml -------------------------------------------------------------------------------- /molecule/cloud-epc-delegated/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/cloud-epc-delegated/playbook.yml -------------------------------------------------------------------------------- /molecule/default/Dockerfile.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/default/Dockerfile.j2 -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/default/playbook.yml -------------------------------------------------------------------------------- /molecule/resources/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/resources/prepare.yml -------------------------------------------------------------------------------- /molecule/resources/tests/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/resources/tests/verify.yml -------------------------------------------------------------------------------- /molecule/resources/tests/verify_win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/molecule/resources/tests/verify_win.yml -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- 1 | --- 2 | [] 3 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /tasks/Linux/fetch/adoptium-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/adoptium-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/corretto-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/corretto-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/dragonwell8-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/dragonwell8-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/local.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/openjdk-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/openjdk-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/repositories.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/s3.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/sapjvm-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/sapjvm-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/sapmachine-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/sapmachine-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/security-fetch/security-fetch-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/security-fetch/security-fetch-local.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/security-fetch/security-fetch-oracle_java-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/security-fetch/security-fetch-oracle_java-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/security-fetch/security-fetch-s3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/security-fetch/security-fetch-s3.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/security-fetch/security-fetch-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/security-fetch/security-fetch-web.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/web.yml -------------------------------------------------------------------------------- /tasks/Linux/fetch/zulu-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/fetch/zulu-fallback.yml -------------------------------------------------------------------------------- /tasks/Linux/finalize_paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/finalize_paths.yml -------------------------------------------------------------------------------- /tasks/Linux/install/Amazon_2_corretto_8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/Amazon_2_corretto_8.yml -------------------------------------------------------------------------------- /tasks/Linux/install/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/Debian.yml -------------------------------------------------------------------------------- /tasks/Linux/install/Debian_adoptium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/Debian_adoptium.yml -------------------------------------------------------------------------------- /tasks/Linux/install/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/RedHat.yml -------------------------------------------------------------------------------- /tasks/Linux/install/RedHat_adoptium.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/RedHat_adoptium.yml -------------------------------------------------------------------------------- /tasks/Linux/install/Suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/Suse.yml -------------------------------------------------------------------------------- /tasks/Linux/install/sapjvm_tarball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/sapjvm_tarball.yml -------------------------------------------------------------------------------- /tasks/Linux/install/tarball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/install/tarball.yml -------------------------------------------------------------------------------- /tasks/Linux/security_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/security_policy.yml -------------------------------------------------------------------------------- /tasks/Linux/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/system.yml -------------------------------------------------------------------------------- /tasks/Linux/system_repositories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Linux/system_repositories.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/adoptium-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/adoptium-fallback.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/chocolatey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/chocolatey.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/corretto-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/corretto-fallback.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/local.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/openjdk-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/openjdk-fallback.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/sapjvm-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/sapjvm-fallback.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/sapmachine-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/sapmachine-fallback.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/security-fetch/security-winfetch-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/security-fetch/security-winfetch-local.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/security-fetch/security-winfetch-oracle_java-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/security-fetch/security-winfetch-oracle_java-fallback.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/security-fetch/security-winfetch-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/security-fetch/security-winfetch-web.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/web.yml -------------------------------------------------------------------------------- /tasks/Win32NT/fetch/zulu-fallback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/fetch/zulu-fallback.yml -------------------------------------------------------------------------------- /tasks/Win32NT/finalize_paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/finalize_paths.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/adoptium_tarball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/adoptium_tarball.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/chocolatey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/chocolatey.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/corretto_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/corretto_package.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/package.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/sapjvm_tarball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/sapjvm_tarball.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/sapmachine_tarball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/sapmachine_tarball.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/tarball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/tarball.yml -------------------------------------------------------------------------------- /tasks/Win32NT/install/zulu_tarball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/install/zulu_tarball.yml -------------------------------------------------------------------------------- /tasks/Win32NT/security_policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/security_policy.yml -------------------------------------------------------------------------------- /tasks/Win32NT/system.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/system.yml -------------------------------------------------------------------------------- /tasks/Win32NT/system_chocolatey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/Win32NT/system_chocolatey.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/not-supported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/not-supported.yml -------------------------------------------------------------------------------- /tasks/unknown-transport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/tasks/unknown-transport.yml -------------------------------------------------------------------------------- /templates/java.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/templates/java.sh.j2 -------------------------------------------------------------------------------- /vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/Debian.yml -------------------------------------------------------------------------------- /vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/RedHat.yml -------------------------------------------------------------------------------- /vars/Suse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/Suse.yml -------------------------------------------------------------------------------- /vars/Windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/Windows.yml -------------------------------------------------------------------------------- /vars/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/default.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/adoptium_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/adoptium_vars.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/corretto_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/corretto_vars.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/dragonwell8_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/dragonwell8_vars.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/openjdk_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/openjdk_vars.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/oracle_java_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/oracle_java_vars.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/sapjvm_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/sapjvm_vars.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/sapmachine_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/sapmachine_vars.yml -------------------------------------------------------------------------------- /vars/java_distro_configs/zulu_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_distro_configs/zulu_vars.yml -------------------------------------------------------------------------------- /vars/java_parts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/java_parts.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lean-delivery/ansible-role-java/HEAD/vars/main.yml --------------------------------------------------------------------------------