On 2014-01-05 11:37, Jose Luis Ledesma wrote:
There is not after or before when puppet applies a manifest if there are not 
dependencies explicitly declared. In the example you have written mysql and 
apache will be applied in no particular order between them, but will be 
implemented both before any other resource in the WordPress class.

If you want mysql or apache implemented before the other, you can chain classes:

Class['mysql']=>Class['apache']

To be syntactically correct that should be

    Class['mysql'] -> Class['apache']

with a -> and not a =>.

Andreas

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to