Skip to content

Instantly share code, notes, and snippets.

@andyshinn
Created December 13, 2013 02:43
Show Gist options
  • Save andyshinn/7939117 to your computer and use it in GitHub Desktop.
Save andyshinn/7939117 to your computer and use it in GitHub Desktop.
config.vm.define :fuse do |fuse|
fuse.vm.provider :virtualbox do |vb|
vb.memory = 768
end
fuse.vm.hostname = "fuse-vagrant.mydomain.com"
fuse.vm.network :private_network, :ip => "172.16.48.50"
fuse.hostmanager.aliases = "fuse-vagrant"
fuse.vm.provision :puppet do |puppet|
puppet.manifest_file = "fuse.pp"
puppet.module_path = "conf/puppet/modules"
puppet.manifests_path = "conf/puppet/manifests"
puppet.hiera_config_path = "conf/puppet/hiera.yaml"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment