Skip to content

Commit

Permalink
Expand provisioning steps for Packer build
Browse files Browse the repository at this point in the history
  • Loading branch information
mwunsch committed May 19, 2016
1 parent 9166b5a commit 55abc32
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion example.json
Expand Up @@ -16,7 +16,14 @@
"provisioners": [{
"type": "shell",
"inline": [
"sudo apt-get update"
"sudo apt-get update",
"sudo apt-get install -y software-properties-common python-software-properties",
"sudo apt-add-repository -y ppa:openjdk-r/ppa",
"sudo apt-get update",
"sudo debconf-set-selections <<< \"jackd2 jackd/tweak_rt_limits boolean true\"",
"sudo DEBIAN_FRONTEND=noninteractive apt-get install -y alsa-utils jackd2 supercollider openjdk-8-jdk",
"sudo wget -nv -O /usr/local/bin/lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein",
"sudo chmod a+x /usr/local/bin/lein"
]
}]
}

0 comments on commit 55abc32

Please sign in to comment.