-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a Vagrant file to automatically deploy an Ubuntu 14.04 developmen…
…t VM Mostly inspired from the existing Vagrantfile in Math.Net Numerics: http://numerics.mathdotnet.com/ See https://www.vagrantup.com/ for more information about the Vagrant software.
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# -*- mode: ruby -*- | ||
# vi: set ft=ruby : | ||
|
||
Vagrant.configure(2) do |config| | ||
config.vm.box = "ubuntu/trusty64" | ||
config.vm.provider "virtualbox" do |vb| | ||
vb.gui = false | ||
vb.memory = 4096 | ||
vb.cpus = 4 | ||
end | ||
config.vm.provision "shell", inline: <<-SHELL | ||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF | ||
echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list | ||
apt-get update | ||
apt-get -y upgrade | ||
apt-get -y install mono-complete | ||
apt-get -y install mono-tools-devel | ||
apt-get -y install referenceassemblies-pcl | ||
apt-get -y install fsharp | ||
apt-get -y autoremove | ||
mozroots --import --sync | ||
SHELL | ||
end |