Displaying 1 result from an estimated 1 matches for "manfests".
Did you mean:
manifests
2013 Jul 30
2
Vagrant Puppet Provision VM
...le
├── Vagrantfile
├── definitions
│ └── centos-6.3.minimal
├── hiera
│ └── data
├── iso
│ ├── CentOS-6.3-x86_64-minimal.iso
│ └── VBoxGuestAdditions_4.2.12.iso
├── puppet
│ ├── Puppetfile
│ ├── environments
│ ├── manifests
│ └── modules
└── r10k.yaml
Puppet will execute the puppet/manfests/default.pp for executing all the
modules include within in. Now, I have the following modules list in this
default.pp,
include stdlib
i*nclude hiera_config*
include confluence_facts
include confluence_setup
One thing to note is that by default, hiera.yaml was installed at
/etc/hiera.yaml, yet...