Created
July 17, 2016 11:12
-
-
Save jacoelho/e2ed8126a0e5af57ec6764c4551c612d to your computer and use it in GitHub Desktop.
install clojure with ansible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - hosts: localhost | |
| become: yes | |
| connection: local | |
| tasks: | |
| - apt: | |
| package: openjdk-8-jdk-headless | |
| update_cache: yes | |
| cache_valid_time: 3600 | |
| - get_url: | |
| url: https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein | |
| dest: /usr/local/bin/lein | |
| mode: 0755 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment