summaryrefslogtreecommitdiff
path: root/tests/init.pp
blob: e6d9b537fb244014ee2447193a1ae460caaf45ac (plain)
1
2
3
4
5
6
7
8
9
10
11
node default {

  notify { 'enduser-before': }
  notify { 'enduser-after': }

  class { 'ntp':
    require => Notify['enduser-before'],
    before  => Notify['enduser-after'],
  }

}