Issue #8923 has been reported by Randall Hansen.
----------------------------------------
Refactor #8923: Ordering syntax can be easy to miss
https://projects.puppetlabs.com/issues/8923
Author: Randall Hansen
Status: Investigating
Priority: Normal
Assignee: Randall Hansen
Category: usability
Target version:
Affected Puppet version:
Keywords:
Branch:
Either of these syntaxes makes it easy to miss ordering, and for different
reasons. Consider if there's a better way.
exec { 'a': ... } ->
exec { 'b': ... } ->
exec { 'c': ... }
----
exec { 'a':
before => Exec[ 'b' ],
...
}
exec { 'b':
before => Exec[ 'c' ],
...
}
exec { 'c':
...
}
--
You have received this notification because you have either subscribed to it,
or are involved in it.
To change your notification preferences, please click here:
http://projects.puppetlabs.com/my/account
--
You received this message because you are subscribed to the Google Groups
"Puppet Bugs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-bugs?hl=en.