fuel-library/deployment/puppet/ntp/tests/init.pp
2013-03-11 19:58:14 +04:00

12 lines
183 B
Puppet

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