blob: 9ea22a737d86d4e8a41052f0eaad83005f771b4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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.
#
# Parameters: none
#
# Actions:
#
# Declares all other classes in the stdlib module. Currently, this consists
# of stdlib::stages.
#
# Requires: nothing
#
class stdlib {
include ::stdlib::stages
}
|