init.pp 268 B

123456789
  1. # The notify before should always come BEFORE all resources
  2. # managed by the nginx class
  3. # and the notify last should always come AFTER all resources
  4. # managed by the nginx class.
  5. node default {
  6. notify { 'before': }
  7. -> class { 'nginx': }
  8. -> notify { 'last': }
  9. }