2011-05-24 20:06:30 +02:00
|
|
|
# Class: stdlib
|
|
|
|
#
|
2011-08-18 00:09:03 +02:00
|
|
|
# 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
|
|
|
#
|
2011-08-18 00:09:03 +02:00
|
|
|
# Parameters: none
|
2011-05-24 20:06:30 +02:00
|
|
|
#
|
|
|
|
# Actions:
|
|
|
|
#
|
2011-08-18 00:09:03 +02:00
|
|
|
# Declares all other classes in the stdlib module. Currently, this consists
|
|
|
|
# of stdlib::stages.
|
2011-05-24 20:06:30 +02:00
|
|
|
#
|
2011-08-18 00:09:03 +02:00
|
|
|
# Requires: nothing
|
2011-05-24 20:06:30 +02:00
|
|
|
#
|
|
|
|
class stdlib {
|
2015-07-25 13:34:31 +02:00
|
|
|
include ::stdlib::stages
|
2011-05-24 20:06:30 +02:00
|
|
|
}
|