6f8b78cc67
Many modules I'm working on need a standard but relatively granular location in the catalog. For example, any module that configures the packaging system should run "early" Add the following stages which have inter-dependencies in the top to bottom order listed: * setup * deploy * runtime * setup_infra * deploy_infra * main * setup_app * deploy_app
18 lines
226 B
Puppet
18 lines
226 B
Puppet
# Class: stdlib
|
|
#
|
|
# This module manages stdlib
|
|
#
|
|
# Parameters:
|
|
#
|
|
# Actions:
|
|
#
|
|
# Requires:
|
|
#
|
|
# Sample Usage:
|
|
#
|
|
# [Remember: No empty lines between comments and class definition]
|
|
class stdlib {
|
|
|
|
class { 'stdlib::stages': }
|
|
|
|
}
|