Skip to content

Instantly share code, notes, and snippets.

@mrzarquon
Created November 6, 2013 03:19
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Simple Site.pp
## 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