Syntax fix

This commit is contained in:
Heston Snodgrass 2019-11-21 13:02:35 -07:00 committed by GitHub
parent e44a4dc61d
commit 5a8c49858c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ File { backup => false }
# For more on node definitions, see: https://puppet.com/docs/puppet/latest/lang_node_definitions.html
node default {
class { 'ntp':
server => [ '0.us.pool.ntp.org', '1.us.pool.ntp.org', '2.us.pool.ntp.org', '3.us.pool.ntp.org' ],
servers => [ '0.us.pool.ntp.org', '1.us.pool.ntp.org', '2.us.pool.ntp.org', '3.us.pool.ntp.org' ],
}
}
node puppet.test.com {
@ -38,6 +38,6 @@ node puppet.test.com {
addr => '8170',
}
class { 'ntp':
server => [ '0.us.pool.ntp.org', '1.us.pool.ntp.org', '2.us.pool.ntp.org', '3.us.pool.ntp.org' ],
servers => [ '0.us.pool.ntp.org', '1.us.pool.ntp.org', '2.us.pool.ntp.org', '3.us.pool.ntp.org' ],
}
}