dev/provisioning/modules/stdlib/manifests/init.pp
changeset 28 b0b56e0f8c7f
equal deleted inserted replaced
27:a2342f26c9de 28:b0b56e0f8c7f
       
     1 # Class: stdlib
       
     2 #
       
     3 # This module manages stdlib. Most of stdlib's features are automatically
       
     4 # loaded by Puppet, but this class should be declared in order to use the
       
     5 # standardized run stages.
       
     6 #
       
     7 # Parameters: none
       
     8 #
       
     9 # Actions:
       
    10 #
       
    11 #   Declares all other classes in the stdlib module. Currently, this consists
       
    12 #   of stdlib::stages.
       
    13 #
       
    14 # Requires: nothing
       
    15 #
       
    16 class stdlib {
       
    17   include ::stdlib::stages
       
    18 }