
Catalog compilation succeeds and deploys for role::default add profiles additional_yum_repos and additional_pkgs puppetlabs/stdlib move some includes from profile::base to role::default
15 lines
608 B
Puppet
15 lines
608 B
Puppet
## site.pp ##
|
|
|
|
# This file (./manifests/site.pp) is the main entry point
|
|
# used when an agent connects to a master and asks for an updated configuration.
|
|
# https://puppet.com/docs/puppet/latest/dirs_manifest.html
|
|
#
|
|
# Global objects like filebuckets and resource defaults should go in this file,
|
|
# as should the default node definition if you want to use it.
|
|
|
|
## Active Configurations ##
|
|
|
|
# Disable filebucket by default for all File resources:
|
|
# https://github.com/puppetlabs/docs-archive/blob/master/pe/2015.3/release_notes.markdown#filebucket-resource-no-longer-created-by-default
|
|
File { backup => false }
|