Skip to content

Commit

Permalink
Don't rsync shill... check out fresh
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkmoore committed Sep 13, 2016
1 parent f03c834 commit 1d00554
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Vagrant.configure("2") do |config|
then "shill/freebsd-9.3-mate"
else "shill/freebsd-9.3"
end
config.vm.synced_folder ".", "/home/vagrant/shill", type: "rsync"
config.vm.synced_folder ".", "/vagrant", disabled: true

config.vm.provider "virtualbox" do |vb|
vb.gui = ENV.has_key?("SHILL_GUI")
vb.memory = "1024"
vb.memory = "4096"
end

config.vm.provision "shell", inline: <<-SHELL
pkg install -y racket
pkg install -y racket git
cd /usr/src && rm -Rf *
fetch https://codeload.github.com/HarvardPL/ShillBSD/zip/release/9.3.0
unzip 9.3.0
Expand All @@ -23,6 +23,7 @@ Vagrant.configure("2") do |config|
SHELL

config.vm.provision "shell", privileged: false, inline: <<-SHELL
cd /home/vagrant && git clone https://github.com/HarvardPL/shill.git
cd /home/vagrant/shill/racket && sudo raco link -i -n shill .
cd /home/vagrant/shill/stdlib && sudo raco link -i -n shill .
cd /home/vagrant/shill && make && sudo make install
Expand Down

0 comments on commit 1d00554

Please sign in to comment.