12 lines
183 B
Puppet
12 lines
183 B
Puppet
![]() |
node default {
|
||
|
|
||
|
notify { 'enduser-before': }
|
||
|
notify { 'enduser-after': }
|
||
|
|
||
|
class { 'ntp':
|
||
|
require => Notify['enduser-before'],
|
||
|
before => Notify['enduser-after'],
|
||
|
}
|
||
|
|
||
|
}
|