Sha256: d7ba8c456ba13e992aa8f6d45c79187ab7268181fd5f33d00669400c11bf966e
Contents?: true
Size: 870 Bytes
Versions: 99
Compression:
Stored size: 870 Bytes
Contents
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](http://docs.puppetlabs.com/references/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
99 entries across 99 versions & 2 rubygems