On 07/04/2011 11:51 PM, Scott Smith wrote:
Ignoring the fact that "noise" is very subjective... it doesn't. In Puppet, position in a file has no bearing on order. It's not an imperative language.

I understand.  What I am saying is that another way to express this

        file { "a":
                path => " aaa ",
                before => Exec[ "b" ],
        }

        exec { "b":
                command => "bbb",
                before => File[ "c" ],
        }

        file { "c":
                path => " ccc ",
                before => Exec[ "d" ],
        }

would be this:

        order {
                file { "aaa":
                }

                exec { "bbb":
                }

                file { "ccc":
                }

        }


--
You received this message because you are subscribed to the Google Groups "Puppet 
Users" group.
To post to this group, send email to puppet-users@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.

Reply via email to