Sha256: 8aac6dff8fa299813d58d2bf205cdc1e7544bab34f6c5e99eafece17e742380a

Contents?: true

Size: 859 Bytes

Versions: 50

Compression:

Stored size: 859 Bytes

Contents

# 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' }
#  }
#
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': }

}

Version data entries

50 entries across 50 versions & 5 rubygems

Version Path
puppet-retrospec-1.8.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.7.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.6.1 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.6.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.5.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.4.1 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.4.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.3.2 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.3.1 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.3.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.2.1 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.2.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.1.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-1.0.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-0.12.1 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-0.12.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-0.11.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-0.10.0 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-0.9.1 spec/fixtures/modules/stdlib/manifests/stages.pp
puppet-retrospec-0.9.0 spec/fixtures/modules/stdlib/manifests/stages.pp