Skip to content

Commit e1ecd68

Browse files
minimum value for poll interval should be 3, not 4
Hi Team Just migrating over to using the ntp forge module, and found this little nit `minpoll` should be allowed to be 3, per the ntp documentation https://doc.ntp.org/documentation/4.2.6-series/confopt/#command-options, and 3 is even described as the lower range in https://github.com/puppetlabs/puppetlabs-ntp/blob/main/manifests/init.pp#L105
1 parent 1b82962 commit e1ecd68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types/poll_interval.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# See http://doc.ntp.org/4.2.6/clockopt.html#server for documentation
1+
# See https://doc.ntp.org/documentation/4.2.6-series/confopt/#command-options for documentation
22
# Alternatively: type Ntp::Poll_interval = Variant[Integer, Pattern['']]
3-
type Ntp::Poll_interval = Integer[4, 17]
3+
type Ntp::Poll_interval = Integer[3, 17]

0 commit comments

Comments
 (0)