Skip to content

Instantly share code, notes, and snippets.

@lucywyman
Created September 26, 2017 21:39
Show Gist options
  • Save lucywyman/e2642bdf825507e213fc2668850224de to your computer and use it in GitHub Desktop.
Save lucywyman/e2642bdf825507e213fc2668850224de to your computer and use it in GitHub Desktop.
Vagrant.configure(2) do |config|
config.vm.define :centos7 do |centos7_config|
centos7_config.vm.box = "centos/7"
centos7_config.vm.network :public_network
centos7_config.vm.hostname = "puppet-agent.local"
end
end
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.network :public_network
config.vm.hostname = "puppet.local"
#config.vm.synced_folder "files", "/root/files"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment