puppetlabs-stdlib/manifests/init.pp

21 lines
403 B
ObjectPascal
Raw Normal View History

2011-05-24 20:06:30 +02:00
# Class: stdlib
#
# This module manages stdlib. Most of stdlib's features are automatically
# loaded by Puppet, but this class should be declared in order to use the
# standardized run stages.
2011-05-24 20:06:30 +02:00
#
# Parameters: none
2011-05-24 20:06:30 +02:00
#
# Actions:
#
# Declares all other classes in the stdlib module. Currently, this consists
# of stdlib::stages.
2011-05-24 20:06:30 +02:00
#
# Requires: nothing
2011-05-24 20:06:30 +02:00
#
class stdlib {
class { 'stdlib::stages': }
2011-05-24 20:06:30 +02:00
}