Skip to content

Instantly share code, notes, and snippets.

@tbernacchi
Last active August 12, 2017 15:25
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 tbernacchi/a3684c816ca8d83b984e4754998acee7 to your computer and use it in GitHub Desktop.
Save tbernacchi/a3684c816ca8d83b984e4754998acee7 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# # vi: set ft=ruby :
###CONFIGURACOES DOS HOSTS
Vagrant.configure("2") do |config|
#BOX
config.vm.box = "insaneworks/centos7"
config.vm.define "chef1" do |chef1|
chef1.vm.provider :virtualbox do |v|
v.name = "chef1"
v.customize ["modifyvm", :id, "--memory", "256"]
end
chef1.vm.hostname = "chef1"
chef1.vm.network "private_network", ip: "192.168.33.101"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment