Last active
September 25, 2022 17:54
-
-
Save marcuslang/9e31543ec583ddeef29734ab47ea0474 to your computer and use it in GitHub Desktop.
Revisions
-
marcuslang revised this gist
Dec 20, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -2,9 +2,9 @@ Vagrant.configure("2") do |config| (1..3).each do |i| config.vm.define "node-#{i}" do |node| node.vm.box = "ubuntu/trusty64" node.vm.network "private_network", ip: "192.168.25.#{i}", auto_config: false node.vm.provision "shell", inline: "echo hello from node #{i}" end end -
marcuslang created this gist
Dec 20, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ Vagrant.configure("2") do |config| (1..3).each do |i| config.vm.define "node-#{i}" do |node| node.vm.box = "ubuntu/trusty64" node.vm.network "private_network", ip: "192.168.25.#{i}", auto_config: false node.vm.provision "shell", inline: "echo hello from node #{i}" end end end