-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile.ex3
More file actions
23 lines (21 loc) · 864 Bytes
/
Vagrantfile.ex3
File metadata and controls
23 lines (21 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- mode: ruby -*-
# vi: set ft=ruby :
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box_url = "https://atlas.hashicorp.com/hashicorp/boxes/precise32"
config.vm.box = "hashicorp/precise32"
config.vm.hostname = "vagrant.tscanlon.iv"
config.vm.network "private_network", ip: "172.24.4.4"
config.vm.provision "puppet" do |puppet|
# okay so now lets start doing something a little closer to how
# a production setup would be
# site specific configuration is going to go in manifests
puppet.manifests_path = "manifests"
# specifically inside a file called site.pp
# from there we will import our node definitions
puppet.manifest_file = "site.pp"
# then we can start bundling descrete pieces of functionality
# inside modules
puppet.module_path = "modules"
end
end