Puppet Class: stdlib::stages
- Defined in:
- manifests/stages.pp
Overview
Class: stdlib::stages
This class manages a standard set of run stages for Puppet. It is managed by the stdlib class, and should not be declared independently.
The high level stages are (in order):
* setup
* main
* runtime
* setup_infra
* deploy_infra
* setup_app
* deploy_app
* deploy
Parameters: none
Actions:
Declares various run-stages for deploying infrastructure,
language runtimes, and application layers.
Requires: nothing
Sample Usage:
node default {
include ::stdlib
class { java: stage => 'runtime' }
}
33 34 35 36 37 38 39 40 41 42 43 |
# File 'manifests/stages.pp', line 33
class stdlib::stages {
stage { 'setup': before => Stage['main'] }
stage { 'runtime': require => Stage['main'] }
-> stage { 'setup_infra': }
-> stage { 'deploy_infra': }
-> stage { 'setup_app': }
-> stage { 'deploy_app': }
-> stage { 'deploy': }
}
|