From 1b2111de9f4368fd2d68dd144a1562f6dca96c0e Mon Sep 17 00:00:00 2001 From: David Moss Date: Mon, 16 Jan 2017 22:17:45 +0000 Subject: - added a vangrant setup file for cross platform testing --- Vagrantfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..82a660f --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,10 @@ +Vagrant.configure(2) do |config| + config.vm.hostname = 'netaddr-' + `whoami`.chomp.downcase + config.vm.box = "ubuntu/trusty64" + config.ssh.forward_agent = true + + config.vm.provider "virtualbox" do |v| + v.memory = 1024 + v.cpus = 2 + end +end -- cgit v1.2.1