Skip to content

Commit

Permalink
switch vagrant base to ubuntu 15.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Einsdorf committed May 14, 2015
1 parent 083ffce commit f60c4e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "jfredett/arch-base"
config.vm.box = "ubuntu/vivid64"
config.vm.provision :shell, path: "vagrant-bootstrap.sh"


# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
config.vm.network :forwarded_port, host: 8080, guest: 8080
#Debub port:
#Debub port:
config.vm.network :forwarded_port, host: 6001, guest: 6001


Expand Down
5 changes: 2 additions & 3 deletions vagrant-bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/bin/bash

sudo pacman -Syu --noconfirm
sudo pacman -S git jdk7-openjdk ghc subversion texlive-most vim --noconfirm

sudo apt-get update
sudo apt-get install -y git openjdk-8-jdk ghc subversion texlive-full vim gcc g++
sudo ln -fs /vagrant/build/install/GRIT/ /home/vagrant/grit

0 comments on commit f60c4e1

Please sign in to comment.