Created
July 3, 2016 21:16
-
-
Save jacoelho/443e6187272c399a632d558b75e5f5a9 to your computer and use it in GitHub Desktop.
install scala
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_key: | |
| keyserver: keyserver.ubuntu.com | |
| id: 642AC823 | |
| - apt_repository: | |
| repo: 'deb https://dl.bintray.com/sbt/debian /' | |
| state: present | |
| register: repo | |
| - apt: update_cache=yes | |
| when: repo.changed | |
| - apt: | |
| package: sbt | |
| - apt: deb=http://downloads.lightbend.com/scala/2.11.8/scala-2.11.8.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment