Files
dolibarr/dev/vagrant/dolibarrdev/puphpet/puppet/modules/nginx/tests/init.pp
2014-06-23 11:28:59 +02:00

10 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': }
}