Skip to content

Commit

Permalink
Provision box with OpenJDK 7 and Lein
Browse files Browse the repository at this point in the history
Nothing works
  • Loading branch information
mwunsch committed Apr 14, 2016
1 parent 607afce commit dabb87a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,3 +10,4 @@ pom.xml.asc
.hgignore
.hg/
.otto/
.vagrant/
12 changes: 8 additions & 4 deletions Vagrantfile
Expand Up @@ -64,8 +64,12 @@ Vagrant.configure(2) do |config|
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# sudo apt-get update
# sudo apt-get install -y apache2
# SHELL
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y openjdk-7-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
SHELL
end

0 comments on commit dabb87a

Please sign in to comment.