Sha256: 262b17a20d605d0bbd6b8274e90f67cb67b926305fde023f263a8a3be9e011b5

Contents?: true

Size: 1.33 KB

Versions: 6

Compression:

Stored size: 1.33 KB

Contents

## site.pp ##

# This file (/etc/puppetlabs/puppet/manifests/site.pp) is the main entry point
# used when an agent connects to a master and asks for an updated configuration.
#
# Global objects like filebuckets and resource defaults should go in this file,
# as should the default node definition. (The default node can be omitted
# if you use the console and don't define any other nodes in site.pp. See
# http://docs.puppetlabs.com/guides/language_guide.html#nodes for more on
# node definitions.)

## Active Configurations ##

# Disable filebucket by default for all File resources:
#https://docs.puppet.com/pe/2015.3/release_notes.html#filebucket-resource-no-longer-created-by-default
File { backup => false }

# DEFAULT NODE
# Node definitions in this file are merged with node data from the console. See
# http://docs.puppetlabs.com/guides/language_guide.html#nodes for more on
# node definitions.

# The default node definition matches any node lacking a more specific node
# definition. If there are no other nodes in this file, classes declared here
# will be included in every node's catalog, *in addition* to any classes
# specified in the console for that node.

node default {
  # This is where you can declare classes for all nodes.
  # Example:
  #   class { 'my_class': }
  fail('This was using the manifest setting from environment.conf')
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
onceover-4.0.0 spec/fixtures/controlrepos/caching/manifests/site.pp
onceover-3.22.0 spec/fixtures/controlrepos/caching/manifests/site.pp
onceover-3.21.0 spec/fixtures/controlrepos/caching/manifests/site.pp
onceover-3.20.0 spec/fixtures/controlrepos/caching/manifests/site.pp
onceover-3.19.2 spec/fixtures/controlrepos/caching/manifests/site.pp
onceover-3.19.1 spec/fixtures/controlrepos/caching/manifests/site.pp