-
-
Save hemanth22/7f50f16f315fbca3b369229594ce1b0b to your computer and use it in GitHub Desktop.
Vagrant
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 characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure("2") do |config| | |
config.vm.provider :virtualbox do |vb| | |
vb.name = "app.intranet" | |
vb.customize [ 'modifyvm', :id, '--memory', '512' ] | |
vb.customize [ 'modifyvm', :id, '--cpus', '1' ] | |
end | |
config.vm.network :private_network, ip: "192.168.0.11" | |
config.vm.synced_folder "/Users/lorn/src/", "/Projects" | |
config.vm.box = "precise64" | |
config.vm.hostname = "app.intranet" | |
config.vm.provision :puppet do |puppet| | |
puppet.manifests_path = "puppet/manifests" | |
puppet.manifest_file = "site.pp" | |
puppet.module_path = "puppet/modules" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment