module-nginx/tests/init.pp
Jeff McCune 1a3d758d4b Update init.pp test with relationships
This shows the module user how relationships can be easily added
to the main nginx class without peeking inside the guts of the module.
2012-01-03 11:39:34 -08:00

9 lines
268 B
Puppet

# The notify before should always come BEFORE all resources
# managed by the nginx class
# and the notify last should always come AFTER all resources
# managed by the nginx class.
node default {
notify { 'before': }
-> class { 'nginx': }
-> notify { 'last': }
}