Skip to content

Instantly share code, notes, and snippets.

@symkat
Created April 4, 2020 05:51
Show Gist options
  • Save symkat/1062cbefbe731d26a3f5600c8e9ff332 to your computer and use it in GitHub Desktop.
Save symkat/1062cbefbe731d26a3f5600c8e9ff332 to your computer and use it in GitHub Desktop.
[root@echo ~]# cat /etc/puppetlabs/code/environments/production/modules/profile/echo_symkat_net/manifests/init.pp
include ntp
class { 'ntp':
servers => ['0.pool.ntp.org', '1.pool.ntp.org', '2.pool.ntp.org', '3.pool.ntp.org' ],
restrict => [
'default ignore',
'-6 default ignore',
'127.0.0.1',
'-6 ::1',
'0.pool.ntp.org nomodify notrap nopeer noquery',
'1.pool.ntp.org nomodify notrap nopeer noquery',
'2.pool.ntp.org nomodify notrap nopeer noquery',
'3.pool.ntp.org nomodify notrap nopeer noquery',
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment