Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created July 17, 2016 11:12
Show Gist options
  • Save jacoelho/e2ed8126a0e5af57ec6764c4551c612d to your computer and use it in GitHub Desktop.
Save jacoelho/e2ed8126a0e5af57ec6764c4551c612d to your computer and use it in GitHub Desktop.
install clojure with ansible
- 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