On 08/09/2011 01:19 PM, ki_chi_saga wrote:
To me the Exec["shareall"] will be run last? But does it?

Rgds,
  Mat


if you care about order you should make it explicit:

exec { 'a':  ... } ->
exec { 'b':  ... } ->
exec { 'c':  ... }

or

exec { 'a':
        before => Exec[ 'b' ],
        ...
}
exec { 'b':
        before => Exec[ 'c' ],
        ...
}
exec { 'c':
        ...
}


--
vagn

--
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