Puppet Class: stdlib
- Defined in:
- vendor_modules/stdlib/manifests/init.pp
Summary
This module manages stdlib.Overview
Most of stdlib's features are automatically loaded by Puppet, but this class should be declared in order to use the standardized run stages.
Declares all other classes in the stdlib module. Currently, this consists of stdlib::stages and stdlib::manage.
10 11 12 13 |
# File 'vendor_modules/stdlib/manifests/init.pp', line 10
class stdlib {
include stdlib::manage
include stdlib::stages
}
|