> 3.-) Stage order. > > but when applying new syntax: > > class orden { > Stage['repos'] -> Stage['os'] -> Stage['main'] -> Stage['gLite'] -> > Stage['post'] > }
In your working example you define the classes and then enforce ordering at the same time. The new syntax references the stages but doesn't actually define them, so you could do this: class orden { stage { [ 'repos', 'os', 'gLite', 'post' ]: } Stage['repos'] -> Stage['os'] -> Stage['main'] -> Stage['gLite'] -> Stage['post'] } -Hunter Haugen -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-us...@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.