We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9f2dd0d + 2be7648 commit 3de8b3bCopy full SHA for 3de8b3b
README.markdown
@@ -67,6 +67,22 @@ class { '::ntp':
67
}
68
```
69
70
+###I just want to install a client that can't be queried
71
+
72
+```puppet
73
+class { '::ntp':
74
+ servers => ['ntp1.corp.com', 'ntp2.corp.com'],
75
+ restrict => [
76
+ 'default ignore',
77
+ '-6 default ignore',
78
+ '127.0.0.1',
79
+ '-6 ::1',
80
+ 'ntp1.corp.com nomodify notrap nopeer noquery',
81
+ 'ntp1.corp.com nomodify notrap nopeer noquery'
82
+ ],
83
+}
84
+```
85
86
###I only want to listen on specific interfaces, not on 0.0.0.0
87
88
Restricting this is especially useful on Openstack nodes which may have numerous virtual interfaces.
0 commit comments