Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created July 3, 2016 21:16
Show Gist options
  • Save jacoelho/443e6187272c399a632d558b75e5f5a9 to your computer and use it in GitHub Desktop.
Save jacoelho/443e6187272c399a632d558b75e5f5a9 to your computer and use it in GitHub Desktop.
install scala
- 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