[Puppet Users] Re: Dependency Ordering Confusion

2013-07-26 Thread Josh D
On Tuesday, February 19, 2013 8:48:43 AM UTC-7, jcbollinger wrote: > > > > On Monday, February 18, 2013 8:41:53 AM UTC-6, Josh D wrote: >> >> I have a module for windows nodes that is defined like: >> >> class ast_win { >> Class['ast_win::env'] ~> Class['ast_win::restart'] -> Class['ast_win'] >

[Puppet Users] Re: Dependency Ordering Confusion

2013-02-19 Thread jcbollinger
On Monday, February 18, 2013 8:41:53 AM UTC-6, Josh D wrote: > > I have a module for windows nodes that is defined like: > > class ast_win { > Class['ast_win::env'] ~> Class['ast_win::restart'] -> Class['ast_win'] > > ast_win::env contains a bunch of scripts that modify the environment on > th

[Puppet Users] Re: Dependency Ordering

2012-11-26 Thread jcbollinger
On Saturday, November 24, 2012 1:17:54 PM UTC-6, Smashed wrote: > > class Foo { > > require A > > … some other stuff > > } > > > class A { > > include B > > include C > > include D > > } > > > When structured like this does this mean that A,B,C and D will all be > processed before Foo? > Class