facter 1.5.6 → 1.5.7
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of facter might be problematic. Click here for more details.
- data/CHANGELOG +496 -344
- data/COPYING +12 -13
- data/ChangeLog +1727 -0
- data/LICENSE +13 -670
- data/Rakefile +17 -54
- data/install.rb +5 -4
- data/lib/facter.rb +2 -2
- data/lib/facter/ipaddress.rb +2 -2
- data/lib/facter/manufacturer.rb +22 -11
- data/lib/facter/netmask.rb +1 -1
- data/lib/facter/operatingsystemrelease.rb +12 -52
- data/lib/facter/path.rb +5 -0
- data/lib/facter/util/ip.rb +8 -1
- data/lib/facter/util/loader.rb +5 -1
- data/lib/facter/util/macosx.rb +7 -3
- data/lib/facter/util/manufacturer.rb +13 -2
- data/lib/facter/util/netmask.rb +7 -1
- data/lib/facter/util/resolution.rb +1 -0
- data/lib/facter/util/virtual.rb +43 -0
- data/lib/facter/virtual.rb +26 -40
- data/spec/spec.opts +2 -0
- data/spec/unit/data/solaris_ifconfig_all_with_multiple_interfaces +8 -0
- data/spec/unit/facter.rb +16 -0
- data/spec/unit/operatingsystem.rb +4 -1
- data/spec/unit/util/ip.rb +23 -0
- data/spec/unit/util/loader.rb +10 -0
- data/spec/unit/util/macosx.rb +34 -0
- data/spec/unit/util/resolution.rb +21 -0
- data/spec/unit/util/virtual.rb +96 -0
- data/spec/unit/virtual.rb +51 -0
- metadata +70 -64
data/CHANGELOG
CHANGED
@@ -1,345 +1,497 @@
|
|
1
|
-
1.5.
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
1.5.7
|
2
|
+
=====
|
3
|
+
07dca60 Added additional exclusion to rcov process
|
4
|
+
8398238 Added rcov support to spec task
|
5
|
+
7194454 Updated CI Rake task
|
6
|
+
2472048 Clarify licensing as GPLv2 (or any later version)
|
7
|
+
4bc05e9 Added new format ChangeLog
|
8
|
+
5bc8db3 Incremented version and updated CHANGELOG
|
9
|
+
eb3a8a7 Issue #2414 - add unit test
|
10
|
+
7623e25 Fix errors when alias IP's are defined
|
11
|
+
bfe8a2a Fix 2455 - improve error handling on fact load
|
12
|
+
49470cf Fix broken solaris zone tests on EC2
|
13
|
+
9515a40 Issue #2548 netblock fact
|
14
|
+
33be9e0 Add Darwin netmask support on top of Jim's patch
|
15
|
+
9d846b4 Fix #2306 netmask and ipaddress on SunOS and BSDs
|
16
|
+
7d4a5f9 Updated Rakefile and moved Rake tasks to tasks/rake directory
|
17
|
+
5982deb Added default Rake task
|
18
|
+
0e0483a Fix bug where you'd get an 'undefined method' error if trying to access a fact's value when collection has not being yet initialized.
|
19
|
+
fe41fb8 Fix #2470 - duplicate entries in interfaces fact
|
20
|
+
be9e484 Update OS X minor version fact to cope with '10.x' values and provide test coverage
|
21
|
+
f3ad66f Update install.rb to cope with all OS X versions, not just 10.5
|
22
|
+
c02d3b6 Issue #2292 Add tests for virtual facts
|
23
|
+
6c9fec5 Added path fact
|
24
|
+
51c6e3d Issue #2314 OpenBSD sysctl
|
25
|
+
95e5fea Fix broken ci build with explicit clearing before tests
|
26
|
+
efc30e7 Change spec output to enable broken build debugging
|
27
|
+
6d71410 Fixed CI spec task
|
28
|
+
82d97e2 Fix operatingsystemrelease on Red Hat based distros
|
29
|
+
bee55c4 Consolidate operatingsystemrelease for CentOS, Fedora, oel, ovs, and RedHat
|
30
|
+
|
31
|
+
1.5.6
|
32
|
+
=====
|
33
|
+
f4cb619 Updated CHANGELOG and bumped version for 1.5.6
|
34
|
+
dcdd5ce Fixes #2307 - Minor fix for zone in virtual.rb
|
35
|
+
ba44f08 Removed --no-thread and --no-chain-reply-to from rake mail_patches task
|
36
|
+
806f49f Added facter branding to format patch command
|
37
|
+
96c015c Added spec.executables to Facter gemspec in Rakefile
|
38
|
+
d97a63e Sync rpm spec file with latest from Fedora/EPEL
|
39
|
+
dad4569 Added path to Rakefile
|
40
|
+
365cb8e CHANGELOG updates
|
41
|
+
68e0b24 Fix #2278 Revert fix for 2120
|
42
|
+
b533e78 Tighten operatingsystemrelease regex on CentOS < 5
|
43
|
+
48aa135 Fix operatingsystemrelease for CentOS < 5
|
44
|
+
253fef1 Added spec files to package list
|
45
|
+
b37d683 Added install.rb to Rakefile package task
|
46
|
+
7995d05 Bumped release to 1.5.5rc2
|
47
|
+
|
48
|
+
1.5.5rc2
|
49
|
+
========
|
50
|
+
1de8891 Bumped release to 1.5.5rc2
|
51
|
+
|
52
|
+
1.5.5
|
53
|
+
=====
|
54
|
+
dad4569 Added path to Rakefile
|
55
|
+
365cb8e CHANGELOG updates
|
56
|
+
68e0b24 Fix #2278 Revert fix for 2120
|
57
|
+
b533e78 Tighten operatingsystemrelease regex on CentOS < 5
|
58
|
+
48aa135 Fix operatingsystemrelease for CentOS < 5
|
59
|
+
253fef1 Added spec files to package list
|
60
|
+
b37d683 Added install.rb to Rakefile package task
|
61
|
+
7995d05 Bumped release to 1.5.5rc2
|
62
|
+
56760d3 Facter #2120 - Solaris support for Facter[virtual]
|
63
|
+
2fb91ca Tests for #2227 - multiple interfaces on Darwin
|
64
|
+
00b192a Added SELinux tests
|
65
|
+
aecac08 Fix #2155 - architecture facts on Gentoo
|
66
|
+
831d937 Refactor #2154 - Modified patch from Benedikt Bohm to simplify openvz and vserver detection
|
67
|
+
7f3d237 Cleaned up Rakefile and removed requirement for Reductive Labs build library
|
68
|
+
a6adf59 Facter ticket 2214 - Fix facts for OVS
|
69
|
+
e101faf Fixed #2131 - Facter doesn't populate lsbmajdistrelease on OEL (also OEL/OVS and other facts)
|
70
|
+
73e6656 Facter fix #2231 typo
|
71
|
+
2518312 Fix #2236 - don't use each_line on arrays
|
72
|
+
f94abfc Fixed #1327 - Added SELinux facts
|
73
|
+
8768371 Fixed #2119 - Added support for non-global Solaris 10 zones
|
74
|
+
23a5b3d Fixed #2215 - Added support for SUSE Linux Enterprise Desktop to operatingsystem and operatingsystemrelease
|
75
|
+
e93b1e6 Added support for ArchLinux to operatingsystem fact
|
76
|
+
8e4a689 Fixes #2169 Correctly recognises dom0 and domUs
|
77
|
+
636a91d Partial fix for #2191 - Facter compatibility for Ruby 1.9
|
78
|
+
9df0583 Added COPYING in and CHANGELOG updates
|
79
|
+
516402c Fixing #1918 - facter --puppet always works
|
80
|
+
d89ea7a Fixing ifconfig warnings generated on OS X
|
81
|
+
7fa2576 Fixed #2132 - support for named interface aliases under linux
|
82
|
+
7a81945 correctly compare values - fixes #2021
|
83
|
+
1288b26 Fixed #2080 - IPAddress resolutions should be reordered
|
84
|
+
a6d6ba5 Use resultion.exec util instead of which checks
|
85
|
+
89a3aa8 Fix to stdout in resolution.rb
|
86
|
+
add6d47 Fixed #2081 - Fixed interfaces fact for vlan subinterfaces
|
87
|
+
8def362 Fixed #2063 - added kernelmajversion fact
|
88
|
+
5d94f7f Fixed #2055 - SunoS Interface error
|
89
|
+
9376e5b Fixed #2044 - virtual fact thread fix
|
90
|
+
c754949 Fix for rake task for reductive-build library
|
91
|
+
75db918 Fixed lib install permissions
|
92
|
+
ba2e470 Fixed #2040 - Facter should provide a macosx_productversion_major fact
|
93
|
+
77fa46b Fix virtual fact if xen but /proc/virtual present
|
94
|
+
9722e1f Fixed #2003 - Added is_virtual fact
|
95
|
+
7a30a6a Fixed CHANGELOG
|
96
|
+
c6c30a4 Fixed #2035 - Missing brace for OSX preflight
|
97
|
+
b6f0f99 more consistent indentation and alignment. also removal of trailing whitespace
|
98
|
+
9bc174f Further fix #2032 - close IO
|
99
|
+
6b904a0 Added EC2 facts
|
100
|
+
86b01bf Fixed #2032 - file.open hanging on /proc/uptime on some platform
|
101
|
+
91d8cb7 Updated to version 1.5.4
|
102
|
+
a99d043 Fixed #1966 - Added physicalprocessorcount fact
|
103
|
+
94ea807 This commit refs #1555, #1898 and fixes #1761
|
104
|
+
04389db Added support for Oracle VM Server to operatingsystem and operatingsystemrelease
|
105
|
+
552f150 Added support for Oracle Enterprise Linux to operatingsystem
|
106
|
+
a932a69 Added README.rst for Facter
|
107
|
+
e52f962 Added Reductive Labs build library
|
108
|
+
0726437 Updated README
|
109
|
+
|
110
|
+
1.5.4
|
111
|
+
=====
|
112
|
+
91d8cb7 Updated to version 1.5.4
|
113
|
+
a99d043 Fixed #1966 - Added physicalprocessorcount fact
|
114
|
+
94ea807 This commit refs #1555, #1898 and fixes #1761
|
115
|
+
04389db Added support for Oracle VM Server to operatingsystem and operatingsystemrelease
|
116
|
+
552f150 Added support for Oracle Enterprise Linux to operatingsystem
|
117
|
+
a932a69 Added README.rst for Facter
|
118
|
+
e52f962 Added Reductive Labs build library
|
119
|
+
0726437 Updated README
|
120
|
+
f4bc74d Fixing #1927 - failing facts don't kill Facter
|
121
|
+
063e4dc Fixed #1850 - Facter updates for Ruby 1.9
|
122
|
+
b85ab0a Fixed #1924 - Fixed lo / lo:0 local interface matching
|
123
|
+
4dcd012 Fixed generic uptime fact
|
124
|
+
d93ca69 Fixed Ubuntu operatingsystem identification
|
125
|
+
effb82f Cleaner fix for #1926
|
126
|
+
ccafc00 Fixed #1926 - IPAddr to_s issue
|
127
|
+
d9eef19 Added timezone fact
|
128
|
+
|
129
|
+
1.5.3
|
130
|
+
=====
|
131
|
+
b86a1fb Updated to version 1.5.3
|
132
|
+
a73e803 Fixing the usage of the macosx util module; I somehow missed renaming it here
|
133
|
+
23289bd Fixed uptime refactor issues on non-Linux platforms
|
134
|
+
a194c91 Adding mail_patches rake task
|
135
|
+
a82f476 Renaming Facter::Macosx to Facter::Util::Macosx
|
136
|
+
1f1fa9b Fixing #1838 - profiler failures don't throw exceptions
|
137
|
+
5f202c9 Fixed #1867 - Fixed OpenSuSE detection
|
138
|
+
0bcdb71 Fixing #1854 - Adding ArchLinux support
|
139
|
+
fab9d1c Added network fact
|
140
|
+
da52e30 Fixed #1870 - Format all subnet masks as human-readable
|
141
|
+
c2de35f Added uptime facts
|
142
|
+
02c2912 Refactor - rename ipmess to interfaces
|
143
|
+
db4face Fixed autotest on win32
|
144
|
+
c149b49 Fix bug #1870 and add interface fact support for darwin systems
|
145
|
+
aa56886 Refactoring the IP support, and fixing #1846.
|
146
|
+
91e25b9 Fixing indentation everywhere
|
147
|
+
074eda9 Fixing autotest, now that vendor/ is gone
|
148
|
+
01754f6 Removing the vendor/ gems.
|
149
|
+
e6d987d Fixing #1761 - Solaris no longer uses /etc/release
|
150
|
+
a70184a Fixed #1791 - support for virtual fact on Solaris 10
|
151
|
+
99833a1 Fixed #1793 - Added more Solaris 10 facts
|
152
|
+
85b2a55 minor fix to operatingsystemversion to correctly parse /etc/release on OpenSolaris 2008.11.
|
153
|
+
8247304 Fixed errors on unrecognised option in binary
|
154
|
+
0fe4611 Added ci namespace and Rake tasks
|
155
|
+
7ddea77 Fix for #1727 - id fact should not rely on whoami on Solaris
|
156
|
+
f9a346a Sync specfile with latest from Fedora
|
157
|
+
fd07cd2 Removed EPM task
|
158
|
+
43d0aea Fixed #1697 - Typo in ipaddress.rb causes timeout under Solaris 10 SPARC
|
159
|
+
4e707c6 Fixed #1650 - OS X package creation script should be more selective about cleaning out prior versions
|
160
|
+
8a38aa5 Added Ubuntu to a variety of confines
|
161
|
+
051c843 Removed ENV path setting from virtual.rb
|
162
|
+
6393e82 Fixed #1634 - Update virtual fact to differentiate OpenVZ hardware nodes and virtual environments
|
163
|
+
de39f6c Revamp domain resolution
|
164
|
+
4d7b44c Fixed #1619 - Applying patch by seanmil, adding support for SLES.
|
165
|
+
84b83c4 Fixed #1509 - Fixed version recognition for SLES.
|
166
|
+
20650ac Fixes #1582 - Fix MAC address reporting for Linux bonding slave interfaces
|
167
|
+
a86577c Fixing the GPL/LGPL incompatibility by choosing the oldest-mentioned license (GPL).
|
168
|
+
c1d937c Fixed #1575 - CentOS fix for Facter SPEC file
|
169
|
+
1d00253 Fixed #1547 - finally killed dots in IP address facts
|
170
|
+
9c9c79a Fixed #1567 - fixed createpackage.sh output
|
171
|
+
d4cf657 Fixed #1569 - createpackage.rb bug
|
172
|
+
|
173
|
+
1.5.2
|
174
|
+
=====
|
175
|
+
a80779b Updated to version 1.5.2
|
176
|
+
0e49580 Updated to version 1.5.2
|
177
|
+
6e0a1f3 Fixes #1558 - Adjusted virtual fact to allow non-root users to execute it
|
178
|
+
4998d3b Fixes #1562 - Removed facter from PREREQS
|
179
|
+
0fac704 Fixed #1558 - Updated virtual fact for xenu and xen0
|
180
|
+
5c50bc3 Fixed #1555 - added operatingsystemrelease for Solaris
|
181
|
+
e503857 Fixed #1559 - update to dmidecode fact
|
182
|
+
518393e Fixed . dot escaping
|
183
|
+
0356b6e Updated to version 1.5.1
|
184
|
+
|
185
|
+
1.5.1
|
186
|
+
=====
|
187
|
+
bff615c Updated to version 1.5.1
|
188
|
+
c2eb5ba Updated to version 1.5.1
|
189
|
+
bc35a3b Adding a rake task for creating an archive.
|
190
|
+
d24504e Added a Process.waitall thread when there's a timeout, to avoid zombies.
|
191
|
+
bd87aa0 Set the timeout for the host-based and resolv-based resolutions to 2.
|
192
|
+
e6aa39f Updating changelog for previous two commits
|
193
|
+
095eb15 Applied patch by josb to fix CentOS version detection.
|
194
|
+
422dd11 Facter fix #1422, no default timeout
|
195
|
+
ca93b81 Adding better SuSE detection for both operatingsystem and release.
|
196
|
+
b7be581 Add unit rspec tests for ticket 1425
|
197
|
+
af81fb3 Extract ifconfig output to data directory
|
198
|
+
2546c53 Add sample test and strawman solution for IP parsing code
|
199
|
+
b33d8c6 Add module level tests for Facter::IPAddress
|
200
|
+
590a3d0 Fixes #1492 - added kernelversion fact
|
201
|
+
d8b708b Fix ticket 1425 on Solaris
|
202
|
+
b91ee5e Remove duplicated code paths
|
203
|
+
df8fc8c fix terrible error with overwriting permissions
|
204
|
+
91ca4ab Fixed #1490 - Added virtual fact
|
205
|
+
ff45c86 Feature #1487: Package creation scripts for Mac OS X
|
206
|
+
9b42182 Modified the operatingsystem fact for Debian so it looks in
|
207
|
+
e1023de Feature #1478: Allow specification of --bindir --sbindir --sitelibdir --mandir --destdir in install.rb
|
208
|
+
845ae94 Feature #1475: CONFIG['bindir'] CONFIG['sbindir'] have undesirable defaults on OS X 10.5
|
209
|
+
a12608e Fixes #1467 - macaddress not set on Ubuntu
|
210
|
+
d999d95 Don't try and run lsb_release on windows
|
211
|
+
1eb94d3 Bug #1434 Don't execute which on windows
|
212
|
+
bb235e3 Use rbconfig to detect host cpu
|
213
|
+
3f180b3 Get DNSDomain from WMI to set domain
|
214
|
+
dc7363e Set macaddress on windows platform
|
215
|
+
0df872b Get kernel version via wmi
|
216
|
+
3ea1905 Use ipconfig to determine ip address
|
217
|
+
5e09ea1 Use rbconfig to detect windows as no uname binary
|
218
|
+
ded53b0 Fixed Rakefile to include additional files including tests et al
|
219
|
+
1cf98d1 Adjusted version to be in line with previous standard
|
220
|
+
ff0e90b Adding (apparently now required) author info to the gem spec
|
221
|
+
7042c46 Updated to version 1.5
|
222
|
+
e98efd3 Updated to version 1.5
|
223
|
+
d49d63c Updating the changelog for 1.5
|
224
|
+
88fe243 Fixed formatting
|
225
|
+
8c91649 Fixed #1400 - OperatingSystemRelease should now work on CentOS
|
226
|
+
927b3a1 Adding a default case for the manufacturer information.
|
227
|
+
9b464de Further fixes #1378 - updated dmidecode for NetBSD
|
228
|
+
a44d6c3 Fixes #1378 - update manufacter.rb facts to support BSD
|
229
|
+
9581190 Partial fix for #1345 - BSD interfaces with aliases now select the first address by default
|
230
|
+
2ef2041 Retaining 'timeout' as the settor, but using 'limit' as the getter.
|
231
|
+
e22b408 Changed 'timeout' option to 'limit'
|
232
|
+
145cee2 Setting the timeout for the puppetversion fact to 1.5.
|
233
|
+
40a9c1d Fixing some warnings in various classes.
|
234
|
+
0303885 Fixes #1376 - Display memory facts for AIX
|
235
|
+
2ac29ac Added processorcount and type facts to AIX
|
236
|
+
0b0892d Fixes #1334 - Forced Facter to use LANG=C
|
237
|
+
def18b5 Fixes #1357 - change ps syntax for OSX and BSD
|
238
|
+
ce7b74c Rejustifying all of the whitespace in the facts, yay.
|
239
|
+
2ee5d29 Refactoring how recursive searches are detected.
|
240
|
+
d322df9 Refactored so each fact resolution can specify a separate timeout,
|
241
|
+
9a1882e Retrieve hardwaremodel for AIX from sys0 modelname.
|
242
|
+
b574c6a Refactered ipmess.rb and util/ip.rb to support separate *BSD logic for *BSD aliased interfaces.
|
243
|
+
d9bd388 Refactor of netmask fact - fixes ticket #66
|
244
|
+
09bc48c Testing gitosis
|
245
|
+
f9961c7 Fixes for ticket #60
|
246
|
+
a12d3d8 Removing old test/unit tests.
|
247
|
+
400bab9 Adding a timeout to fact retrieval, fixing #56.
|
248
|
+
d235f26 Reverting the version.
|
249
|
+
7e84cdb Updated CHANGELOG
|
250
|
+
a5a72bd Added LSB Major Dist Release fact fixing #41
|
251
|
+
fc6d1c9 Added support for AIX fixing ticket #56
|
252
|
+
17f916f Updated Red Hat spec file for new version and files
|
253
|
+
86e0708 Incremented version number to 1.5
|
254
|
+
edbfc44 Adding a --puppet option to facter to load Puppet facts.
|
255
|
+
bb41db0 Switching to a search path registration system.
|
256
|
+
07a3d47 Moving the puppet-related loading tests to an integration test.
|
257
|
+
03258eb Retrieval of fact values now autoloads facts.
|
258
|
+
e02b0b3 Updated version. Moved most facts to seperate files.
|
259
|
+
9c91a6d Facter no longer loads all facts by default.
|
260
|
+
aaaf767 Moving the version and ruby facts to a separate file.
|
261
|
+
f1acbc0 Switching Facter to using the new loader.
|
262
|
+
bb92493 Fixing the last few occurrences of Facter::Resolution instead of Facter::Util::Resolution.
|
263
|
+
dcfc171 Fixing the test so it doesn't break other tests.
|
264
|
+
1ba2bed Moving all of the support classes to util/.
|
265
|
+
be0a803 Creating a 'loader' class to handle loading facts for the collection.
|
266
|
+
cc9e221 Adding the 'each' method back into Facter.
|
267
|
+
48b8744 Updating the executable to not use Facter.each.
|
268
|
+
5889e43 Fixing warnings and interfaces.
|
269
|
+
bfc4996 Moving Facter's container behaviour into a separate class.
|
270
|
+
e3c1fda Splitting the instance code into a Fact class.
|
271
|
+
121d291 Adding all of the tests for the Facter::Resolution class.
|
272
|
+
8971979 Reorganizing my new tests so they match the autotest discovery.
|
273
|
+
b8de4e4 Simplifying Confine a bit
|
274
|
+
c5492c2 Splitting the different classes in Facter up, and adding some tests.
|
275
|
+
4f39ec8 Adding autotest hooks
|
276
|
+
fef9b7d fixing whitespace
|
277
|
+
567549b Closes #1145 - fixed bad interface names by replacing : with _
|
278
|
+
d449472 Updated CHANGELOG
|
279
|
+
bd3b316 removing .swp file
|
280
|
+
e11edfb Switching from test/unit to rspec, and fixing a couple
|
281
|
+
1a5ba71 Fixed Solaris detection of lo0 for ticket #46
|
282
|
+
92b43e0 Added require util ip.rb file
|
283
|
+
0c4ac42 Fixed #46 - refactor ipmess.rb
|
284
|
+
a633aeb Added new files
|
285
|
+
c312df8 Further updates to split facts and move support functions
|
286
|
+
df4636a Split out facts from facter.rb and moved all support code to util
|
287
|
+
4bb9ed4 Added support for multiple interfaces, macaddress and netmask facts for Linux, *BSD, and Solaris
|
288
|
+
64f9fe9 Fixed conflict merge
|
289
|
+
2b06799 Revert "Fixed ticket #50 - added selinux facts"
|
290
|
+
ecc1f0c Added Ubuntu operatingsystem and operatingsystemrelease fact support
|
291
|
+
96cf3d6 Added Debian release version support
|
292
|
+
b3962ef Fixed ticket #50 - added selinux facts
|
293
|
+
d7d82fc Fixed ticket #48 - CentOS operatingsystemrelease fact now reporting correct value
|
294
|
+
2af364c Added Mandrake support for operatingsystem fact - closed ticket #47
|
295
|
+
85fbf8f Added index to imess.rb fixing Ticket #43.
|
296
|
+
be7c30b Fixed ticket #44
|
297
|
+
|
298
|
+
1.3.8
|
299
|
+
=====
|
300
|
+
74621b5 Updated to version 1.3.8
|
301
|
+
7f1c840 Updated to version 1.3.8
|
302
|
+
4d83f6f Updating version in changelog
|
303
|
+
00ab1f3 Removing the package hosts, so packages are no longer created at all
|
304
|
+
57c76dd Updated CHANGELOG
|
305
|
+
b28ce1b Added require for rdoc/ri/ri_paths to address Puppet #753 and Facter #40
|
306
|
+
dce6245 Revert "Adjusted :kernel confine to make it more in line with others"
|
307
|
+
c5e6f60 Adjusted :kernel confine to make it more in line with others
|
308
|
+
a4698ce Updated CHANGELOG
|
309
|
+
8b08d5f Added support to return multiple interfaces and their IP addresses as facts. Existing ipaddress fact which returns IP address of first interface on node is still available. Currently Linux only. Closes #6
|
310
|
+
6113375 Added macaddress fact support for FreeBSD and OpenBSD - closes #37
|
311
|
+
8426aaf making the install script executable
|
312
|
+
f35ee22 Drastically speeding up the lsb data retrieval, and refactoring the dmidecode data so it is a bit cleaner and does not produce extraneous output or errors
|
313
|
+
20986d9 Set operatingsystemrelease to the major release on RHEL and Fedora
|
314
|
+
43b5640 Remove tabs; don't fail if dmidecode doesn't return expected information
|
315
|
+
68449a9 Adding manufacturer code, as requested by digant on the Puppet Trac site.
|
316
|
+
750a0c6 Add YAML output option to the help text.
|
317
|
+
8a67e32 Fixed problem with executing system_profiler and sw_vers on non Darwin hosts.
|
318
|
+
43933dd Fixed problem where facter referenced puppet plist utility library.
|
319
|
+
46d9bed Added a bunch of information from system_profiler -xml. In particular, sp_serial_number is interesting. Also added values from sw_vers, to get the commonly used Mac OS X version and build identifier.
|
320
|
+
86e3d8e Setting the ldapname so it is guaranteed to be a string
|
321
|
+
b582612 Applying patch from Valentin Vidic, fixing open filehandles
|
322
|
+
09261ac Updated to version 1.3.7
|
323
|
+
94ca0c3 Updated to version 1.3.7
|
324
|
+
|
325
|
+
1.3.7
|
326
|
+
=====
|
327
|
+
3e12345 Adding release tag REL_1_3_7
|
328
|
+
a329b65 Using consistent naming internally; I previously had essentially random quoting and case, but it is now all lower-case symbols. It should behave the same externally.
|
329
|
+
4880c69 Applying patch from #36 by psychedelys
|
330
|
+
11cff7b Fixing Facter.flush
|
331
|
+
df57cec Fixing #33 -- we now only return the first mac address
|
332
|
+
31039dc Applying patch from Adam Jacob that makes FACTERLIB work
|
333
|
+
392d8f2 Applying patch from #35.
|
334
|
+
824f91c Fixing bug where an up interface not in active use was being selected as the canonical IP instead of using the IP attached to the interface assigned the default route.
|
335
|
+
38cd613 Sync with Fedora specfile
|
336
|
+
4cf0016 updating docs a bit
|
337
|
+
c1a02be Updated to version 1.3.6
|
338
|
+
b333df2 Updated to version 1.3.6
|
339
|
+
|
340
|
+
1.3.6
|
341
|
+
=====
|
342
|
+
ce5258b Adding release tag REL_1_3_6
|
343
|
+
cc672ba disabling solaris package generation for facter
|
344
|
+
067dc2c updating changelog for 1.3.6
|
345
|
+
b013e21 Applying patch from #29.
|
346
|
+
7b665cc Fixing ssh key facts so they only include the key, not the type.
|
347
|
+
0674780 Make specfile work for FC < 5 and RHEL < 5
|
348
|
+
ea65bdd Reconciling with Fedora specfile
|
349
|
+
4dc1c37 Do not try and check the command if which is not available; fixes trac #30
|
350
|
+
c7a9e19 Updated to version 1.3.5
|
351
|
+
bae0b49 Updated to version 1.3.5
|
352
|
+
9a73c72 Updated to version 1.3.5
|
353
|
+
|
354
|
+
1.3.5
|
355
|
+
=====
|
356
|
+
5192d94 Adding release tag REL_1_3_5
|
357
|
+
4339b46 Fixing #26 -- using Resolution.exec instead of executing directly, and also calling lsb_release for every fact, instead of just once at startup
|
358
|
+
82fd890 Updated to version 1.3.4
|
359
|
+
95352bc Updated to version 1.3.4
|
360
|
+
677c986 Updated to version 1.3.4
|
361
|
+
|
362
|
+
1.3.4
|
363
|
+
=====
|
364
|
+
e882251 Adding release tag REL_1_3_4
|
365
|
+
ca498a2 updating changelog for 1.3.4
|
366
|
+
d75744b Adding patch from #21, adding lsb_release facts
|
367
|
+
fe0f2f2 Adding yaml support, as requested in #24
|
368
|
+
4abbce9 applying patch from #18.
|
369
|
+
7407e0c Fixing facter so it does not fail when an unknown fact is asked for
|
370
|
+
e2185ce Sorting the facts when they are all output
|
371
|
+
c96cf6a Adding fqdn fact
|
372
|
+
fc9331a Fixing #20. I just made sure that the Domain fact cchecks the hostname first, so that if the hostname is an fqdn it will set the domain from that.
|
373
|
+
07a42e6 Applying patch from #22
|
374
|
+
610fb5d Applying patch in #23.
|
375
|
+
3569253 Applying memfree patch from #17.
|
376
|
+
b9beaa8 updates
|
377
|
+
722e6f2 doc updates
|
378
|
+
e2337bd doc updates
|
379
|
+
2987d50 updates
|
380
|
+
044f19c adding docs
|
381
|
+
6f01dec adding docs
|
382
|
+
4c04592 Updated to version 1.3.3
|
383
|
+
474d65d Updated to version 1.3.3
|
384
|
+
|
385
|
+
1.3.3
|
386
|
+
=====
|
387
|
+
f3333f3 Adding release tag REL_1_3_3
|
388
|
+
682b97a updating changelog for 1.3.3
|
389
|
+
747d45a Adding the ability to retrieve facts from the environment.
|
390
|
+
86fdc87 Updated to version 1.3.2
|
391
|
+
c4659bd Updated to version 1.3.2
|
392
|
+
|
393
|
+
1.3.2
|
394
|
+
=====
|
395
|
+
3869edf Adding release tag REL_1_3_3
|
396
|
+
ea96381 simple packaging updaets
|
397
|
+
c2aa508 Adding thread exclusivity to memory and cpu reading
|
398
|
+
ace180f Re-adding these files, since Matt has found a solution to the hanging problem.
|
399
|
+
ba2e189 removing processor.rb in case it has the same problems as the memory file
|
400
|
+
9f14df9 Deleting this file until the hanging problems are resolved
|
401
|
+
157f68e fixing license issues
|
402
|
+
a0a33e6 fixing spec file again
|
403
|
+
31caa08 Updated to version 1.3.1
|
404
|
+
8ad0323 Updated to version 1.3.1
|
405
|
+
5e34a1f Updated to version 1.3.1
|
406
|
+
|
407
|
+
1.3.1
|
408
|
+
=====
|
409
|
+
60be696 Adding release tag REL_1_3_1
|
410
|
+
73aeade adding a call to dnsdomainname before domainname
|
411
|
+
6ac796d Fixing #15. Just adding rescue blocks around the load statements.
|
412
|
+
81f451b updating for 1.3
|
413
|
+
b543152 Updated for use with latest Fedora ruby packages
|
414
|
+
15f2f44 Updated to version 1.3
|
415
|
+
15931ef Updated to version 1.3
|
416
|
+
261d909 Updated to version 1.3
|
417
|
+
539d593 fixing installer so it does not install batch files on darwin
|
418
|
+
4c1d5e0 trying to fix facterbin rubylib setting
|
419
|
+
7f2504d fixing test so that it works even if rubylib is not set
|
420
|
+
75b1835 Adding tagging frameworks back into Facter, and adding the ability to specify tags to the to_hash method so that you only receive facts tagged with specific tags
|
421
|
+
4296f1f fixing the linux processor stuff so it only gets called on linux
|
422
|
+
558d05a changing the syntax of the fact confines
|
423
|
+
9908628 Adding some documentation to the binary
|
424
|
+
a15c8f5 Adding rubysitedir fact, as requested in #13. Also, switching the output when one fact is asked for, so it only produces the single value, with no => symbol.
|
425
|
+
ee7d3ca fixing test to ignore differences in memory
|
426
|
+
5ae066b Switching "tag" to "confine", because it is a more appropriate term. I will also add "tags", but they will be used for creating fact collections.
|
427
|
+
c7cfd08 Adding patch from #11, with slight modifications.
|
428
|
+
59cea90 Adding patch from #11, with slight modifications.
|
429
|
+
f3cc5e3 Adding the ability to specify tags as hashes or arrays, as requested in #112.
|
430
|
+
01d37d9 Getting rid of the autoload method entirely; facts are now only loaded at startup.
|
431
|
+
3a0181e fixing linux memory stuff
|
432
|
+
6932a95 accepting patch in #10, although with more abstraction, and creating a module for the memory functions
|
433
|
+
165a401 Accepting the patch in #9, with some modifications.
|
434
|
+
af062c6 adding solaris pkg stuff
|
435
|
+
8794e46 Updated to version 1.2.1
|
436
|
+
|
437
|
+
1.2.1
|
438
|
+
=====
|
439
|
+
77344ea Adding release tag REL_1_2_1
|
440
|
+
b208f47 fixing small bug that only occurs with gems
|
441
|
+
999929e Updated to version 1.2.0
|
442
|
+
|
443
|
+
1.2.0
|
444
|
+
=====
|
445
|
+
afe3c30 Adding release tag REL_1_2_0
|
446
|
+
99b61e7 Adding final autoloading work.
|
447
|
+
97f1a5e updating changelog for 1.2.0
|
448
|
+
87bbd50 adding another test for the exe
|
449
|
+
f745454 Adding ruby, puppet, and facter version facts
|
450
|
+
6c01e04 Fixing install and tests so that there are no errors, hopefully.
|
451
|
+
22bd24b Added "architecture" fact, added the ability to autoload facts from separate files, and added the ability to retrieve fact values via a method for each fact.
|
452
|
+
fe782b9 Accepting the patch from #5
|
453
|
+
6c37a20 Removing ruby as a prereq
|
454
|
+
c78d113 Converting rakefile to the new build system
|
455
|
+
fadc8c5 Minor changes for hte Fedora Extras review
|
456
|
+
e3e4a03 fixing rake file to build and copy rpms automatically
|
457
|
+
46996fa updating changelog for 1.1.4
|
458
|
+
aab8687 Updated to version 1.1.4
|
459
|
+
|
460
|
+
1.1.4
|
461
|
+
=====
|
462
|
+
571683b Adding Release tag REL_1_1_4
|
463
|
+
0b7dce7 Fixing installer to put the facter executable in /usr/bin instead of /
|
464
|
+
3c71757 Updated to version 1.1.3
|
465
|
+
|
466
|
+
1.1.3
|
467
|
+
=====
|
468
|
+
d494ac2 Adding Release tag REL_1_1_3
|
469
|
+
3a230a0 adding 1.1.3 changelog
|
470
|
+
2e407d4 Identifying centos
|
471
|
+
cc4a943 updates
|
472
|
+
4579f8f Updated to version 1.1.2
|
473
|
+
|
474
|
+
1.1.2
|
475
|
+
=====
|
476
|
+
9279ca8 Adding Release tag REL_1_1_2
|
477
|
+
d36885f Adding ldapname capabilities
|
478
|
+
a4309b4 Automatically update version and release in the specfile for new releases
|
479
|
+
2d84edd Fix specfile in accordance with Fedora Extras guidelines
|
480
|
+
2c0999e RPM creation now works
|
481
|
+
62c050a Working on packaging
|
482
|
+
2c99812 Updated to version 1.1.1
|
483
|
+
|
484
|
+
1.1.1
|
485
|
+
=====
|
486
|
+
6fef6af Adding Release tag REL_1_1_1
|
487
|
+
35ed5f4 Fixing bug when a fact with no resolutions is asked for
|
488
|
+
a295c73 Fixing bug when a fact with no resolutions is asked for
|
489
|
+
5a0bd4a Updated to version 1.1.0
|
490
|
+
|
491
|
+
1.1.0
|
492
|
+
=====
|
493
|
+
81657d1 Adding Release tag REL_1_1_0
|
494
|
+
1ed4216 Redoing how tags work.
|
495
|
+
d9c86d5 updating everything to essentially disable docs generation
|
496
|
+
64a86db Adding Release tag
|
5
497
|
|
6
|
-
1.5.5:
|
7
|
-
Bug #2291 (Closed): Fix operatingsystemrelease for CentOS < 5
|
8
|
-
|
9
|
-
Bug #2278 (Closed): Virtual fact incorrect on Solaris sparc
|
10
|
-
|
11
|
-
Cleaned up Rakefile and removed requirement for Reductive Labs build library
|
12
|
-
|
13
|
-
Fixed #2131 (Closed): Facter doesn't populate lsbmajdistrelease on OEL
|
14
|
-
|
15
|
-
Fixed #2214 (Closed): Identify Oracle VM properly
|
16
|
-
|
17
|
-
Fixed #2231: ipaddress_pcn0 fact no longer exists on Solaris systems
|
18
|
-
|
19
|
-
Fixed #2236 (Closed): macaddress fact uses each_line on arrays
|
20
|
-
|
21
|
-
Fixed #1918 - facter --puppet doesn't work
|
22
|
-
|
23
|
-
Fixed #2011 - virtual fact reports always vserver_host if /proc/virtual
|
24
|
-
|
25
|
-
Fixed #2021 - Returning boolean not always possible
|
26
|
-
|
27
|
-
Fixed #2132 - Support for named interfaces under Linux
|
28
|
-
|
29
|
-
Fixed #1327 - Added SELinux facts
|
30
|
-
|
31
|
-
Fixed #2119 - Added support for non-global Solaris 10 zones
|
32
|
-
|
33
|
-
Fixed #2080 - IPAddress resolutions should be reordered
|
34
|
-
|
35
|
-
Fixed #2078 - ip.rb errors command not found
|
36
|
-
|
37
|
-
Fixed #2058 - Redirecting stderr doesn't work on all systems
|
38
|
-
|
39
|
-
Fixed #2081 - Fixed interfaces fact for vlan subinterfaces
|
40
|
-
|
41
|
-
Fixed #2063 - added kernelmajversion fact
|
42
|
-
|
43
|
-
Fixed #2055 - SunoS Interface error
|
44
|
-
|
45
|
-
Fixed #2044 - fixed virtual fact
|
46
|
-
|
47
|
-
Fixed lib install permissions
|
48
|
-
|
49
|
-
Fixed #2040 - Facter should provide a macosx_productversion_major fact
|
50
|
-
|
51
|
-
Fixed #2003 - Added is_virtual fact
|
52
|
-
|
53
|
-
Fixed #2035 - Missing brace for OSX preflight
|
54
|
-
|
55
|
-
Added EC2 facts
|
56
|
-
|
57
|
-
Fixed #2032 - file.open hanging on /proc/uptime on some platform
|
58
|
-
|
59
|
-
1.5.4:
|
60
|
-
Fixed #1966 - Added physicalprocessorcount fact
|
61
|
-
|
62
|
-
Fixed #1761 - changes to Solaris facts:
|
63
|
-
operatingsystemrelease == kernel release or uname -r
|
64
|
-
kernelrelease == uname -r
|
65
|
-
kernelversion == uname -v
|
66
|
-
|
67
|
-
Added support for Oracle VM Server to operatingsystem
|
68
|
-
and operatingsystemrelease
|
69
|
-
|
70
|
-
Added support for Oracle Enterprise Linux to operatingsystem
|
71
|
-
and operatingsystemrelease
|
72
|
-
|
73
|
-
Fixed #1927 - failing facts don't kill Facter
|
74
|
-
|
75
|
-
Fixed #1850 - Facter updates for Ruby 1.9
|
76
|
-
|
77
|
-
Fixed #1926 - IPAddr to_s issue
|
78
|
-
|
79
|
-
Fixed Ubuntu operatingsystem identification
|
80
|
-
|
81
|
-
Fixed generic uptime fact
|
82
|
-
|
83
|
-
Fixed #1924 - Fixed lo / lo:0 local interface matching
|
84
|
-
1.5.3:
|
85
|
-
Added network fact
|
86
|
-
|
87
|
-
Fixed #1870 - Format all subnet masks as human-readable
|
88
|
-
|
89
|
-
Added uptime facts
|
90
|
-
|
91
|
-
Fixed autotest on win32
|
92
|
-
|
93
|
-
Fixed #1870 - Added interface support for Darwin
|
94
|
-
|
95
|
-
Fixed #1791 - support for virtual fact on Solaris 10
|
96
|
-
|
97
|
-
Fixed #1793 - Added more Solaris 10 facts
|
98
|
-
|
99
|
-
Fixed errors on unrecognised option in binary
|
100
|
-
|
101
|
-
Added ci namespace and Rake tasks
|
102
|
-
|
103
|
-
Fixed #1650 - OS X package creation script should be more selective
|
104
|
-
about cleaning out prior versions
|
105
|
-
|
106
|
-
Added Ubuntu to a variety of confines
|
107
|
-
|
108
|
-
Fixed #1619 - Applying patch by seanmil, adding support for SLES.
|
109
|
-
|
110
|
-
Fixed #1634 - Update virtual fact to differentiate OpenVZ
|
111
|
-
hardware nodes and virtual environments
|
112
|
-
|
113
|
-
Fixed #1509 - Fixed version recognition for SLES.
|
114
|
-
|
115
|
-
Fixes #1582 - Fix MAC address reporting for Linux bonding
|
116
|
-
slave interfaces
|
117
|
-
|
118
|
-
Fixed #1575 - CentOS fix for Facter SPEC file
|
119
|
-
|
120
|
-
Fixed #1569 - createpackage.sh bug
|
121
|
-
|
122
|
-
Fixed #1567 - createpackage.sh output
|
123
|
-
|
124
|
-
Fixed #1547 - finally killed dots in IP address facts
|
125
|
-
|
126
|
-
1.5.2:
|
127
|
-
Fixed #1562 - Removed facter from PREREQS
|
128
|
-
|
129
|
-
Fixed #1558 - Updated virtual fact for xenu and xen0
|
130
|
-
|
131
|
-
Fixed #1555 - Ddded operatingsystemrelease for Solaris
|
132
|
-
|
133
|
-
Fixed #1559 - Update to dmidecode fact
|
134
|
-
|
135
|
-
1.5.1:
|
136
|
-
Added a Process.waitall thread when there's a timeout, to avoid zombies.
|
137
|
-
|
138
|
-
Set the timeout the host-based and resolve-based resolutions to 2.
|
139
|
-
|
140
|
-
Fixed #1495 - CentOS version detection is now better.
|
141
|
-
|
142
|
-
Fixed #1422 - Facter now defaults to 0 timeout.
|
143
|
-
|
144
|
-
Fixes #1492 - added kernelversion fact
|
145
|
-
|
146
|
-
Added virtual fact
|
147
|
-
|
148
|
-
Modified the operatingsystem fact for Debian so it looks in
|
149
|
-
/etc/debian_version instead of /proc/version.
|
150
|
-
|
151
|
-
Fixes #1467 - macaddress not set on Ubuntu
|
152
|
-
|
153
|
-
Adding a rake task for creating an archive.
|
154
|
-
|
155
|
-
Adding better SuSE detection for both operatingsystem and release.
|
156
|
-
|
157
|
-
Add sample test and strawman solution for IP parsing code
|
158
|
-
|
159
|
-
Add module level tests for Facter::IPAddress
|
160
|
-
|
161
|
-
Fixed #1425 - Solaris
|
162
|
-
|
163
|
-
Feature #1487: Package creation scripts for Mac OS X
|
164
|
-
|
165
|
-
Feature #1478: Allow specification of --bindir --sbindir --sitelibdir --mandir
|
166
|
-
|
167
|
-
Feature #1475: CONFIG['bindir'] CONFIG['sbindir'] have undesirable defaults on
|
168
|
-
|
169
|
-
Fixes #1467 - macaddress not set on Ubuntu
|
170
|
-
|
171
|
-
Enabled a number of Windows facts - operating system, domain, ipaddress, macaddress,
|
172
|
-
kernel, ipconfig and others
|
173
|
-
|
174
|
-
1.5.0:
|
175
|
-
Fixed Rakefile to include additional files including tests et al
|
176
|
-
|
177
|
-
Fixed #1400 - OperatingSystemRelease should now work on CentOS
|
178
|
-
|
179
|
-
Changed 'timeout' option to 'limit' to avoid scope issue
|
180
|
-
|
181
|
-
Fixes #1376 - Display memory facts for AIX
|
182
|
-
|
183
|
-
Fixes #1334 - Forced Facter to use LANG=C
|
184
|
-
|
185
|
-
Fixes #1357 - Change ps syntax for OSX and BSD
|
186
|
-
|
187
|
-
Set the timeout on the AIX kernelrelease fact to 5 seconds.
|
188
|
-
|
189
|
-
Refactored so each fact resolution can specify a separate timeout,
|
190
|
-
but the default is still 0.5.
|
191
|
-
|
192
|
-
Refactered ipmess.rb and util/ip.rb to support separate *BSD logic for
|
193
|
-
*BSD aliased interfaces.
|
194
|
-
|
195
|
-
Updated dmidecode facts fixing ticket #60
|
196
|
-
|
197
|
-
Added AIX support for some facts
|
198
|
-
|
199
|
-
Add lsbmajdistrelease fact for CentOS and Red Hat
|
200
|
-
|
201
|
-
Updated Red Hat spec file for new version
|
202
|
-
The 'facter' executable now has an option (-p|--puppet) for loading the
|
203
|
-
Puppet libraries, which gives it access to Puppet's facts.
|
204
|
-
|
205
|
-
Added autoloading to Facter with a default of not loading all facts,
|
206
|
-
which results in a significant speedup when only one fact is sought.
|
207
|
-
Facts are autoloaded in either a single file named after the fact or
|
208
|
-
in any file in a directory named after the fact.
|
209
|
-
|
210
|
-
Significantly refactored Facter's internals, including creating tests
|
211
|
-
for all internal classes.
|
212
|
-
|
213
|
-
A netmask fact has been added closing ticket #46. It only returns the
|
214
|
-
netmask of the primary interface (in the same behaviour as the ipaddress
|
215
|
-
and macaddress facts).
|
216
|
-
|
217
|
-
Facts to return multiple interfaces on a host have also been updated.
|
218
|
-
If you have multiple interfaces on Linux, *BSD, or Solaris/SunOS you will
|
219
|
-
now get facts for each interface's IP address, MAC address and netmask.
|
220
|
-
The facts will be structured like:
|
221
|
-
ipaddress_int = 10.0.0.x
|
222
|
-
macaddress_int = xx:xx:xx:xx
|
223
|
-
netmask_int = 255.255.255.0
|
224
|
-
|
225
|
-
Facter now identifies Ubuntu hosts and their releases using the
|
226
|
-
operatingsystem and operatingsystemrelease facts.
|
227
|
-
|
228
|
-
The Debian operatingsystemrelease fact now correctly returns the current
|
229
|
-
Debian release.
|
230
|
-
|
231
|
-
Fixed ticket #48 - ioperatingsystem and operatingsystemrelease for CentOS
|
232
|
-
|
233
|
-
Fixed ticket #44 and allowed support for Xen multiple interfaces and aliased
|
234
|
-
interfaces. Supports both Linux and *BSD.
|
235
|
-
|
236
|
-
Added interfaces fact to add as index for ip/MAC address facts
|
237
|
-
|
238
|
-
Added Mandrake support for operatingsystem fact - closed ticket #47
|
239
|
-
|
240
|
-
Fixed ticket #45
|
241
|
-
|
242
|
-
Added netmask.rb closing ticket #46
|
243
|
-
|
244
|
-
1.3.8:
|
245
|
-
Fixed Rdoc::usage bug on CentOS 5 - closed Puppet #753 and Facter #40
|
246
|
-
|
247
|
-
Added support to return multiple interfaces and their IP addresses and
|
248
|
-
MAC addressess as facts. Returns interface_interfacename and
|
249
|
-
macaddress_interfacename. Existing ipaddress and macaddress facts are
|
250
|
-
unchanged and still returned. Currently Linux only. Closes #6.
|
251
|
-
|
252
|
-
Added macaddress fact support for FreeBSD and OpenBSD - closes #37
|
253
|
-
|
254
|
-
Added hardwareisa support for *BSD platforms - closed #38
|
255
|
-
|
256
|
-
Facter now detects the Mandriva distribution - closes #39
|
257
|
-
|
258
|
-
Facter now correctly detects ipaddress on NetBSD - closes #42
|
259
|
-
|
260
|
-
1.3.7:
|
261
|
-
A couple of small bugfixes, including fixing Facter.flush so it correctly
|
262
|
-
flushes cached values, and the mac address fact only returns one
|
263
|
-
value, not all of them.
|
264
|
-
|
265
|
-
Converted all of the fact names to symbols, rather than the somewhat
|
266
|
-
random case used previously. When the facts are converted to a hash,
|
267
|
-
they still convert the fact name to a string.
|
268
|
-
|
269
|
-
1.3.6:
|
270
|
-
A bugfix release, including fixes for #29, and #30. Also fixed
|
271
|
-
the SSH keys so they only have the key, not the type or description.
|
272
|
-
|
273
|
-
1.3.5:
|
274
|
-
A bugfix release.
|
275
|
-
|
276
|
-
1.3.4:
|
277
|
-
Added many new facts, including LSB facts.
|
278
|
-
|
279
|
-
Fixed a few small bugs, notably the error you could get when asking
|
280
|
-
for a non-existent fact.
|
281
|
-
|
282
|
-
1.3.3:
|
283
|
-
Added thread exclusivity to memory and processor facts.
|
284
|
-
|
285
|
-
Added the ability to retrieve facts by pulling them out of the shell
|
286
|
-
environment.
|
287
|
-
|
288
|
-
1.3.2:
|
289
|
-
Temporarily disabled memory and processor facts since they might cause hangs.
|
290
|
-
|
291
|
-
1.3.1:
|
292
|
-
Fixed autoloading so that it catches any errors in loaded libraries.
|
293
|
-
|
294
|
-
1.3:
|
295
|
-
Significant internal refactoring, such as replacing 'tag' with 'confine', and
|
296
|
-
reusing 'tag' for semantic purposes.
|
297
|
-
|
298
|
-
Made autoloading of facts better.
|
299
|
-
|
300
|
-
1.2.1:
|
301
|
-
Fixed a "bug" that occurs if there's a file named "facter" in your
|
302
|
-
ruby search path (as opposed to directory).
|
303
|
-
|
304
|
-
1.2.0:
|
305
|
-
Added RubyVersion, FacterVersion, and PuppetVersion facts.
|
306
|
-
|
307
|
-
Added autoload capabilities, so you can add facts without modifying
|
308
|
-
the core library.
|
309
|
-
|
310
|
-
Added the ability to retrieve facts by treating them as a method on the
|
311
|
-
Facter class, e.g., Facter.operatingsystem.
|
312
|
-
|
313
|
-
Added a to_hash method to Facter, which retrieves all facts as a hash.
|
314
|
-
|
315
|
-
1.1.4:
|
316
|
-
Fixing installer bug.
|
317
|
-
|
318
|
-
1.1.3:
|
319
|
-
Identifying CentOS correctly.
|
320
|
-
|
321
|
-
1.1.2:
|
322
|
-
Added 'ldapname' attribute, so Facts can be easily converted to
|
323
|
-
LDAP.
|
324
|
-
|
325
|
-
1.1.1:
|
326
|
-
Fixed a bug that occurs when you ask for the value of an unregistered
|
327
|
-
fact.
|
328
|
-
|
329
|
-
1.1.0:
|
330
|
-
Added support for OpenBSD (and probably NetBSD and FreeBSD), and significantly
|
331
|
-
refactored (heh) how facts and resolution mechanisms are added.
|
332
|
-
|
333
|
-
1.0.2:
|
334
|
-
Added SuSE distro
|
335
|
-
Added initial support for Cygwin, thanks to contributions from Eric Sorenson
|
336
|
-
|
337
|
-
1.0.1:
|
338
|
-
Added 'id' fact, which basically returns 'whoami'.
|
339
|
-
|
340
|
-
1.0:
|
341
|
-
Rewrote entirely. It's much simpler to use, and now supports
|
342
|
-
adding new fact resolution mechanisms at run-time.
|
343
|
-
|
344
|
-
1.0b1:
|
345
|
-
Initial release.
|