From fd8494b1b57f147ba830b87824412536450f17eb Mon Sep 17 00:00:00 2001 From: Bryan Black Date: Mon, 26 Mar 2018 14:36:48 -0700 Subject: [PATCH] 3-ubuntu --- offspringidea | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 offspringidea diff --git a/offspringidea b/offspringidea new file mode 100644 index 0000000..1341726 --- /dev/null +++ b/offspringidea @@ -0,0 +1,27 @@ +# -*- 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). Please don't change it unless you know what +# you're doing. +Vagrant.configure("2") do |config| + + config.vm.define "ubuntu1" do |ubuntu1| + ubuntu1.vm.box = "ubuntu/xenial64" + ubuntu1.vm.hostname = "ubuntu1" + ubuntu1.vm.network "private_network", ip: "192.168.33.110" + end + + config.vm.define "ubuntu2" do |ubuntu2| + ubuntu2.vm.box = "ubuntu/xenial64" + ubuntu2.vm.hostname = "ubuntu2" + ubuntu2.vm.network "private_network", ip: "192.168.33.120" + end + + config.vm.define "ubuntu3" do |ubuntu3| + ubuntu3.vm.box = "ubuntu/xenial64" + ubuntu3.vm.hostname = "ubuntu3" + ubuntu3.vm.network "private_network", ip: "192.168.33.130" + end +end