Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Last active March 16, 2018 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/83c3e993cea6c515efb7781e46521f71 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/83c3e993cea6c515efb7781e46521f71 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility).
Vagrant.configure("2") do |config|
config.vm.define "xunit" do |test|
test.vm.box = "ubuntu/trusty64"
test.vm.hostname = "xunit"
test.vm.network "private_network", ip: "192.168.56.10"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment