Ansible role which installs Gradle
- Ubuntu
- tested on ansible 2.0.1.0
gradle_version: "2.13" # The version of gradle to install
gradle_install_path: "/usr/local" # Path where to install gradle
---
- name: Install gradle on monitor nodes as root
hosts: monitornodes
remote_user: root
become: yes
roles:
- gradle
Hrushikesh Dhumal ([email protected])