Sha256: f1fff4a3bd403bdf0632ee6347a700dd9d79e8e2aaf5ae395590d988a3023256

Contents?: true

Size: 893 Bytes

Versions: 20

Compression:

Stored size: 893 Bytes

Contents

# frozen_string_literal: true
Puppet::Type.newtype(:stage) do
  desc "A resource type for creating new run stages.  Once a stage is available,
    classes can be assigned to it by declaring them with the resource-like syntax
    and using
    [the `stage` metaparameter](https://puppet.com/docs/puppet/latest/metaparameter.html#stage).

    Note that new stages are not useful unless you also declare their order
    in relation to the default `main` stage.

    A complete run stage example:

        stage { 'pre':
          before => Stage['main'],
        }

        class { 'apt-updates':
          stage => 'pre',
        }

    Individual resources cannot be assigned to run stages; you can only set stages
    for classes."

  newparam :name do
    desc "The name of the stage. Use this as the value for the `stage` metaparameter
      when assigning classes to this stage."
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.3.0 lib/puppet/type/stage.rb
puppet-8.3.0-x86-mingw32 lib/puppet/type/stage.rb
puppet-8.3.0-x64-mingw32 lib/puppet/type/stage.rb
puppet-8.3.0-universal-darwin lib/puppet/type/stage.rb
puppet-8.3.1 lib/puppet/type/stage.rb
puppet-8.3.1-x86-mingw32 lib/puppet/type/stage.rb
puppet-8.3.1-x64-mingw32 lib/puppet/type/stage.rb
puppet-8.3.1-universal-darwin lib/puppet/type/stage.rb
puppet-8.2.0 lib/puppet/type/stage.rb
puppet-8.2.0-x86-mingw32 lib/puppet/type/stage.rb
puppet-8.2.0-x64-mingw32 lib/puppet/type/stage.rb
puppet-8.2.0-universal-darwin lib/puppet/type/stage.rb
puppet-8.1.0 lib/puppet/type/stage.rb
puppet-8.1.0-x86-mingw32 lib/puppet/type/stage.rb
puppet-8.1.0-x64-mingw32 lib/puppet/type/stage.rb
puppet-8.1.0-universal-darwin lib/puppet/type/stage.rb
puppet-8.0.1 lib/puppet/type/stage.rb
puppet-8.0.1-x86-mingw32 lib/puppet/type/stage.rb
puppet-8.0.1-x64-mingw32 lib/puppet/type/stage.rb
puppet-8.0.1-universal-darwin lib/puppet/type/stage.rb