forked from puppetlabs/puppetlabs-ntp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
96 lines (73 loc) · 2.62 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
2013-10-14 - Version 3.0.0-rc1
Summary:
The major change in this release is that `restrict` no longer requires you to
pass in parameters as:
restrict => [ 'restrict x', 'restrict y' ]
but just as:
restrict => [ 'x', 'y' ]
As the template now prefixes each line with restrict.
Features:
- Change the behavior of `restrict` so you no longer need the restrict
keyword.
- Add `udlc` parameter to enable undisciplined local clock regardless of the
machines status as a virtual machine.
- Add AIX support.
Fixes:
- Use class{} instead of including and then anchoring. (style)
- Extend Gentoo coverage to Facter 1.7.
2013-09-05 - Version 2.0.1
Summary:
Correct the LICENSE file.
Bugfixes:
- Add in the appropriate year and name in LICENSE.
2013-07-31 - Version 2.0.0
Summary:
The 2.0 release focuses on merging all the distro specific
templates into a single reusable template across all platforms.
To aid in that goal we now allow you to change the driftfile,
ntp keys, and perferred_servers.
Backwards-incompatible changes:
As all the distro specific templates have been removed and a
unified one created you may be missing functionality you
previously relied on. Please test carefully before rolling
out globally.
Configuration directives that might possibly be affected:
- `filegen`
- `fudge` (for virtual machines)
- `keys`
- `logfile`
- `restrict`
- `restrictkey`
- `statistics`
- `trustedkey`
Features:
- All templates merged into a single template.
- NTP Keys support added.
- Add preferred servers support.
- Parameters in `ntp` class:
- `driftfile`: path for the ntp driftfile.
- `keys_enable`: Enable NTP keys feature.
- `keys_file`: Path for the NTP keys file.
- `keys_trusted`: Which keys to trust.
- `keys_controlkey`: Which key to use for the control key.
- `keys_requestkey`: Which key to use for the request key.
- `preferred_servers`: Array of servers to prefer.
- `restrict`: Array of restriction options to apply.
2013-07-15 - Version 1.0.1
Bugfixes:
- Fix deprecated warning in `autoupdate` parameter.
- Correctly quote is_virtual fact.
2013-07-08 - Version 1.0.0
Features:
- Completely refactored to split across several classes.
- rspec-puppet tests rewritten to cover more options.
- rspec-system tests added.
- ArchLinux handled via osfamily instead of special casing.
- parameters in `ntp` class:
- `autoupdate`: deprecated in favor of directly setting package_ensure.
- `panic`: set to false if you wish to allow large clock skews.
2011-11-10 Dan Bode <[email protected]> - 0.0.4
Add Amazon Linux as a supported platform
Add unit tests
2011-06-16 Jeff McCune <[email protected]> - 0.0.3
Initial release under puppetlabs