Simple Site.pp
This file contains 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
## site.pp ## | |
## Active Configurations ## | |
# PRIMARY FILEBUCKET | |
# This configures puppet agent and puppet inspect to back up file contents when | |
# they run. The Puppet Enterprise console needs this to display file contents | |
# and differences. | |
# Define filebucket 'main': | |
filebucket { 'main': | |
server => 'puppetmaster-1a.c.flowing-flame-390.internal', | |
path => false, | |
} | |
# Make filebucket 'main' the default backup location for all File resources: | |
File { backup => 'main' } | |
# DEFAULT NODE | |
node default { | |
include pe_mcollective | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment