facter 1.6.12 → 1.6.13.rc1

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.

@@ -26,7 +26,7 @@ Facter.add(:ipaddress) do
26
26
  confine :kernel => :linux
27
27
  setcode do
28
28
  ip = nil
29
- output = %x{/sbin/ifconfig}
29
+ output = %x{/sbin/ifconfig 2>/dev/null}
30
30
 
31
31
  output.split(/^\S/).each { |str|
32
32
  if str =~ /inet addr:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/
@@ -38,7 +38,7 @@ end
38
38
  Facter.add(:ipaddress6) do
39
39
  confine :kernel => :linux
40
40
  setcode do
41
- output = Facter::Util::Resolution.exec('/sbin/ifconfig')
41
+ output = Facter::Util::Resolution.exec('/sbin/ifconfig 2>/dev/null')
42
42
 
43
43
  get_address_after_token(output, 'inet6 addr:')
44
44
  end
@@ -10,12 +10,37 @@
10
10
  require 'facter/util/macaddress'
11
11
 
12
12
  Facter.add(:macaddress) do
13
- confine :kernel => %w{SunOS Linux GNU/kFreeBSD}
13
+ confine :kernel => 'Linux'
14
+ has_weight 10 # about an order of magnitude faster
15
+ setcode do
16
+ begin
17
+ Dir.glob('/sys/class/net/*').reject {|x| x[-3..-1] == '/lo' }.first
18
+ path and File.read(path + '/address')
19
+ rescue Exception
20
+ nil
21
+ end
22
+ end
23
+ end
24
+
25
+ Facter.add(:macaddress) do
26
+ confine :kernel => 'Linux'
27
+ setcode do
28
+ ether = []
29
+ output = Facter::Util::Resolution.exec("/sbin/ifconfig -a 2>/dev/null")
30
+ output.each_line do |s|
31
+ ether.push($1) if s =~ /(?:ether|HWaddr) ((\w{1,2}:){5,}\w{1,2})/
32
+ end
33
+ Facter::Util::Macaddress.standardize(ether[0])
34
+ end
35
+ end
36
+
37
+ Facter.add(:macaddress) do
38
+ confine :kernel => %w{SunOS GNU/kFreeBSD}
14
39
  setcode do
15
40
  ether = []
16
41
  output = Facter::Util::Resolution.exec("/sbin/ifconfig -a")
17
42
  output.each_line do |s|
18
- ether.push($1) if s =~ /(?:ether|HWaddr) (\w{1,2}:\w{1,2}:\w{1,2}:\w{1,2}:\w{1,2}:\w{1,2})/
43
+ ether.push($1) if s =~ /(?:ether|HWaddr) ((\w{1,2}:){5,}\w{1,2})/
19
44
  end
20
45
  Facter::Util::Macaddress.standardize(ether[0])
21
46
  end
@@ -2,17 +2,11 @@
2
2
  #
3
3
  # Purpose: Returns Ruby's site library directory.
4
4
  #
5
- # Resolution: Works out the version to major/minor (1.8, 1.9, etc), then joins
6
- # that with all the $: library paths.
7
- #
8
- # Caveats:
9
- #
5
+
6
+ require 'rbconfig'
10
7
 
11
8
  Facter.add :rubysitedir do
12
9
  setcode do
13
- version = RUBY_VERSION.to_s.sub(/\.\d+$/, '')
14
- $:.find do |dir|
15
- dir =~ /#{File.join("site_ruby", version)}$/
16
- end
10
+ RbConfig::CONFIG["sitelibdir"]
17
11
  end
18
12
  end
@@ -7,7 +7,7 @@ module Facter::Util::IP
7
7
  :linux => {
8
8
  :ipaddress => /inet addr:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/,
9
9
  :ipaddress6 => /inet6 addr: ((?![fe80|::1])(?>[0-9,a-f,A-F]*\:{1,2})+[0-9,a-f,A-F]{0,4})/,
10
- :macaddress => /(?:ether|HWaddr)\s+(\w{1,2}:\w{1,2}:\w{1,2}:\w{1,2}:\w{1,2}:\w{1,2})/,
10
+ :macaddress => /(?:ether|HWaddr)\s+((\w{1,2}:){5,}\w{1,2})/,
11
11
  :netmask => /Mask:([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/
12
12
  },
13
13
  :bsd => {
@@ -74,7 +74,7 @@ module Facter::Util::IP
74
74
  def self.get_all_interface_output
75
75
  case Facter.value(:kernel)
76
76
  when 'Linux', 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 'DragonFly'
77
- output = %x{/sbin/ifconfig -a}
77
+ output = %x{/sbin/ifconfig -a 2>/dev/null}
78
78
  when 'SunOS'
79
79
  output = %x{/usr/sbin/ifconfig -a}
80
80
  when 'HP-UX'
@@ -86,11 +86,36 @@ module Facter::Util::IP
86
86
  output
87
87
  end
88
88
 
89
+ def self.get_infiniband_macaddress(interface)
90
+ if File::exist?("/sys/class/net/#{interface}/address") then
91
+ ib_mac_address = `cat /sys/class/net/#{interface}/address`.chomp
92
+ elsif File::exist?("/sbin/ip") then
93
+ ip_output = %x{/sbin/ip link show #{interface}}
94
+ ib_mac_address = ip_output.scan(%r{infiniband\s+((\w{1,2}:){5,}\w{1,2})})
95
+ else
96
+ ib_mac_address = "FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF"
97
+ Facter.debug("ip.rb: nothing under /sys/class/net/#{interface}/address and /sbin/ip not available")
98
+ end
99
+ ib_mac_address
100
+ end
101
+
102
+ def self.ifconfig_interface(interface)
103
+ %x{/sbin/ifconfig #{interface} 2>/dev/null}
104
+ end
105
+
89
106
  def self.get_single_interface_output(interface)
90
107
  output = ""
91
108
  case Facter.value(:kernel)
92
- when 'Linux', 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 'DragonFly'
93
- output = %x{/sbin/ifconfig #{interface}}
109
+ when 'OpenBSD', 'NetBSD', 'FreeBSD', 'Darwin', 'GNU/kFreeBSD', 'DragonFly'
110
+ output = Facter::Util::IP.ifconfig_interface(interface)
111
+ when 'Linux'
112
+ ifconfig_output = Facter::Util::IP.ifconfig_interface(interface)
113
+ if interface =~ /^ib/ then
114
+ real_mac_address = get_infiniband_macaddress(interface)
115
+ output = ifconfig_output.sub(%r{(?:ether|HWaddr)\s+((\w{1,2}:){5,}\w{1,2})}, "HWaddr #{real_mac_address}")
116
+ else
117
+ output = ifconfig_output
118
+ end
94
119
  when 'SunOS'
95
120
  output = %x{/usr/sbin/ifconfig #{interface}}
96
121
  when 'HP-UX'
@@ -7,7 +7,7 @@ module Facter::NetMask
7
7
  case Facter.value(:kernel)
8
8
  when 'Linux'
9
9
  ops = {
10
- :ifconfig => '/sbin/ifconfig',
10
+ :ifconfig => '/sbin/ifconfig 2>/dev/null',
11
11
  :regex => %r{\s+ inet\saddr: #{Facter.ipaddress} .*? Mask: (#{ipregex})}x,
12
12
  :munge => nil,
13
13
  }
@@ -1,6 +1,6 @@
1
1
  module Facter
2
2
  if not defined? FACTERVERSION then
3
- FACTERVERSION = '1.6.12'
3
+ FACTERVERSION = '1.6.13-rc1'
4
4
  end
5
5
 
6
6
  def self.version
@@ -0,0 +1,8 @@
1
+ ib0 Link encap:InfiniBand HWaddr 80:00:00:4a:fe:80:00:00:00:00:00:00:00:02:c9:03:00:43:27:21
2
+ inet addr:10.6.193.12 Bcast:10.6.193.255 Mask:255.255.255.0
3
+ inet6 addr: fe80::202:c903:43:2721/64 Scope:Link
4
+ UP BROADCAST RUNNING MULTICAST MTU:65520 Metric:1
5
+ RX packets:8 errors:0 dropped:0 overruns:0 frame:0
6
+ TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
7
+ collisions:0 txqueuelen:1024
8
+ RX bytes:448 (448.0 b) TX bytes:0 (0.0 b)
@@ -0,0 +1,8 @@
1
+ ib0 Link encap:InfiniBand HWaddr 80:00:00:4A:FE:80:00:00:00:00:00:00:00:00:00:00:00:00:00:00
2
+ inet addr:10.6.193.12 Bcast:10.6.193.255 Mask:255.255.255.0
3
+ inet6 addr: fe80::202:c903:43:2721/64 Scope:Link
4
+ UP BROADCAST RUNNING MULTICAST MTU:65520 Metric:1
5
+ RX packets:8 errors:0 dropped:0 overruns:0 frame:0
6
+ TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
7
+ collisions:0 txqueuelen:1024
8
+ RX bytes:448 (448.0 b) TX bytes:0 (0.0 b)
@@ -25,7 +25,7 @@ describe "IPv6 address fact" do
25
25
 
26
26
  it "should return ipaddress6 information for Linux" do
27
27
  Facter::Util::Resolution.stubs(:exec).with('uname -s').returns('Linux')
28
- Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig').
28
+ Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig 2>/dev/null').
29
29
  returns(ifconfig_fixture('linux_ifconfig_all_with_multiple_interfaces'))
30
30
 
31
31
  Facter.value(:ipaddress6).should == "2610:10:20:209:212:3fff:febe:2201"
@@ -22,14 +22,14 @@ describe "macaddress fact" do
22
22
  end
23
23
 
24
24
  it "should return the macaddress of the first interface" do
25
- Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig -a').
25
+ Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig -a 2>/dev/null').
26
26
  returns(ifconfig_fixture('linux_ifconfig_all_with_multiple_interfaces'))
27
27
 
28
28
  Facter.value(:macaddress).should == "00:12:3f:be:22:01"
29
29
  end
30
30
 
31
31
  it "should return nil when no macaddress can be found" do
32
- Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig -a').
32
+ Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig -a 2>/dev/null').
33
33
  returns(ifconfig_fixture('linux_ifconfig_no_mac'))
34
34
 
35
35
  proc { Facter.value(:macaddress) }.should_not raise_error
@@ -38,7 +38,7 @@ describe "macaddress fact" do
38
38
 
39
39
  # some interfaces dont have a real mac addresses (like venet inside a container)
40
40
  it "should return nil when no interface has a real macaddress" do
41
- Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig -a').
41
+ Facter::Util::Resolution.stubs(:exec).with('/sbin/ifconfig -a 2>/dev/null').
42
42
  returns(ifconfig_fixture('linux_ifconfig_venet'))
43
43
 
44
44
  proc { Facter.value(:macaddress) }.should_not raise_error
@@ -205,6 +205,37 @@ describe Facter::Util::IP do
205
205
  Facter::Util::IP.get_interface_value("em1", "netmask").should == "255.255.255.0"
206
206
  end
207
207
 
208
+ it "should return correct macaddress information for infiniband on Linux" do
209
+ correct_ifconfig_interface = my_fixture_read("linux_get_single_interface_ib0")
210
+
211
+ Facter::Util::IP.expects(:get_single_interface_output).with("ib0").returns(correct_ifconfig_interface)
212
+ Facter.stubs(:value).with(:kernel).returns("Linux")
213
+
214
+ Facter::Util::IP.get_interface_value("ib0", "macaddress").should == "80:00:00:4a:fe:80:00:00:00:00:00:00:00:02:c9:03:00:43:27:21"
215
+ end
216
+
217
+ it "should replace the incorrect macaddress with the correct macaddress in ifconfig for infiniband on Linux" do
218
+ ifconfig_interface = my_fixture_read("linux_ifconfig_ib0")
219
+ correct_ifconfig_interface = my_fixture_read("linux_get_single_interface_ib0")
220
+
221
+ Facter::Util::IP.expects(:get_infiniband_macaddress).with("ib0").returns("80:00:00:4a:fe:80:00:00:00:00:00:00:00:02:c9:03:00:43:27:21")
222
+ Facter::Util::IP.expects(:ifconfig_interface).with("ib0").returns(ifconfig_interface)
223
+ Facter.stubs(:value).with(:kernel).returns("Linux")
224
+
225
+ Facter::Util::IP.get_single_interface_output("ib0").should == correct_ifconfig_interface
226
+ end
227
+
228
+ it "should return fake macaddress information for infiniband on Linux when neither sysfs or /sbin/ip are available" do
229
+ ifconfig_interface = my_fixture_read("linux_ifconfig_ib0")
230
+
231
+ File.stubs(:exists?).with("/sys/class/net/ib0/address").returns(false)
232
+ File.stubs(:exists?).with("/sbin/ip").returns(false)
233
+ Facter::Util::IP.expects(:ifconfig_interface).with("ib0").returns(ifconfig_interface)
234
+ Facter.stubs(:value).with(:kernel).returns("Linux")
235
+
236
+ Facter::Util::IP.get_interface_value("ib0", "macaddress").should == "FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF:FF"
237
+ end
238
+
208
239
  it "should not get bonding master on interface aliases" do
209
240
  Facter.stubs(:value).with(:kernel).returns("Linux")
210
241
 
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: facter
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
5
- prerelease:
4
+ hash: -2032559766
5
+ prerelease: 7
6
6
  segments:
7
7
  - 1
8
8
  - 6
9
- - 12
10
- version: 1.6.12
9
+ - 13
10
+ - rc
11
+ - 1
12
+ version: 1.6.13.rc1
11
13
  platform: ruby
12
14
  authors:
13
15
  - Puppet Labs
@@ -15,7 +17,7 @@ autorequire:
15
17
  bindir: bin
16
18
  cert_chain: []
17
19
 
18
- date: 2012-09-11 00:00:00 Z
20
+ date: 2012-09-26 00:00:00 Z
19
21
  dependencies: []
20
22
 
21
23
  description: You can prove anything with facts!
@@ -27,11 +29,9 @@ extensions: []
27
29
  extra_rdoc_files: []
28
30
 
29
31
  files:
30
- - CHANGELOG
31
32
  - CONTRIBUTING.md
32
33
  - Gemfile
33
34
  - Gemfile.lock
34
- - INSTALL
35
35
  - LICENSE
36
36
  - Rakefile
37
37
  - README.md
@@ -48,11 +48,15 @@ files:
48
48
  - ext/debian/rules
49
49
  - ext/debian/source/format
50
50
  - ext/facter-diff
51
+ - ext/ips/facter.p5m.erb
52
+ - ext/ips/rules
53
+ - ext/ips/transforms
51
54
  - ext/osx/createpackage.sh
52
55
  - ext/osx/file_mapping.yaml
53
56
  - ext/osx/PackageInfo.plist
54
57
  - ext/osx/preflight.erb
55
58
  - ext/osx/prototype.plist.erb
59
+ - ext/packaging/README-Solaris.md
56
60
  - ext/packaging/README.md
57
61
  - ext/packaging/tasks/00_utils.rb
58
62
  - ext/packaging/tasks/10_setupvars.rake
@@ -66,7 +70,9 @@ files:
66
70
  - ext/packaging/tasks/rpm.rake
67
71
  - ext/packaging/tasks/ship.rake
68
72
  - ext/packaging/tasks/sign.rake
73
+ - ext/packaging/tasks/tag.rake
69
74
  - ext/packaging/tasks/tar.rake
75
+ - ext/packaging/tasks/version.rake
70
76
  - ext/project_data.yaml
71
77
  - ext/redhat/facter.spec.erb
72
78
  - ext/solaris/pkginfo
@@ -211,7 +217,9 @@ files:
211
217
  - spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
212
218
  - spec/fixtures/unit/util/ip/hpux_ifconfig_single_interface
213
219
  - spec/fixtures/unit/util/ip/hpux_netstat_all_interfaces
220
+ - spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
214
221
  - spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
222
+ - spec/fixtures/unit/util/ip/linux_ifconfig_ib0
215
223
  - spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
216
224
  - spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
217
225
  - spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
@@ -310,12 +318,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
310
318
  required_rubygems_version: !ruby/object:Gem::Requirement
311
319
  none: false
312
320
  requirements:
313
- - - ">="
321
+ - - ">"
314
322
  - !ruby/object:Gem::Version
315
- hash: 3
323
+ hash: 25
316
324
  segments:
317
- - 0
318
- version: "0"
325
+ - 1
326
+ - 3
327
+ - 1
328
+ version: 1.3.1
319
329
  requirements: []
320
330
 
321
331
  rubyforge_project:
@@ -384,7 +394,9 @@ test_files:
384
394
  - spec/fixtures/unit/util/ip/debian_kfreebsd_ifconfig
385
395
  - spec/fixtures/unit/util/ip/hpux_ifconfig_single_interface
386
396
  - spec/fixtures/unit/util/ip/hpux_netstat_all_interfaces
397
+ - spec/fixtures/unit/util/ip/linux_get_single_interface_ib0
387
398
  - spec/fixtures/unit/util/ip/linux_ifconfig_all_with_single_interface
399
+ - spec/fixtures/unit/util/ip/linux_ifconfig_ib0
388
400
  - spec/fixtures/unit/util/ip/Mac_OS_X_10.5.5_ifconfig
389
401
  - spec/fixtures/unit/util/ip/solaris_ifconfig_all_with_multiple_interfaces
390
402
  - spec/fixtures/unit/util/ip/solaris_ifconfig_single_interface
data/CHANGELOG DELETED
@@ -1,938 +0,0 @@
1
- 1.6.12
2
- ===
3
- 398b111 (Maint) Extract common elements of selinux tests
4
- c534126 (#10819) Avoid reading from /proc/self/mounts in ruby
5
- b95ea54 fix yum repo path in yaml file
6
- 3ad05f1 Remove version test from facter
7
- fce4b01 fix redhat spec release template variable
8
- 903b1d9 Stop using sed to generate the preflight erb
9
- 601a967 Use git read-only packaging repo for public access
10
- dd3401e Fixup apple packaging
11
- e0454df Remove libexec from file list as its only in 2.x
12
- 1e7f5b3 Update debhelper compat to 7, add format
13
- 6659e61 Fixup redhat spec erb template for f17
14
- 6752530 Shift to using packaging repo
15
- fe311c2 Remove obsolete tasks directory
16
- 900895f Group requires together
17
- 8c18e33 Move facter redhat spec file to erb
18
- 84f8e10 Add debian build artifacts to facter project
19
- d2d3baf Replace rake/gempackagetask with rubygems/gempackagetask
20
- 6f58b4e Move tasks out of 'rake' subdirectory
21
- db9d154 Move packaging files to ext, rm conf
22
- c0cbe62 (#15464) Make Facter.version settable via Facter.version=
23
- 0b49eae (#15464) Make contributing easy via bundle Gemfile
24
- bf6ee4f Retabbed conf/redhat/facter.spec to lineup tag contents.
25
- defbfb8 (#15291) Add Vendor tag to Facter spec file
26
- 17243bb Update facter redhat spec for fedora 17
27
- 7ca9122 Update a facter build-requires for f17
28
- d5d2328 (#11640) Added support for new OpenStack MAC addresses
29
-
30
- 1.6.11
31
- ===
32
- f75e46e Add build-requires of ruby-rdoc for manpage generation
33
- e9e084f (Maint) Update CONTRIBUTING.md to match Puppet
34
- 841b99a (#15687) Selinux: Test for policyvers before reading it
35
- 10aa3aa (#15049) Return only one selinuxfs path as string from mounts
36
- f7f90e4 Update version nos to match Facter development
37
- ab87a2c Modify facter spec to work with Ruby 1.9
38
-
39
- 1.6.10
40
- ===
41
- 35067dc Bump Facter epoch to 1
42
- d6a3e91 Make package task depend on tar in Rakfile
43
- f42896d (#14764) Stub architecture fact when Windows facts run on Linux
44
- f44ca52 (maint) Fix hardware model fact for ruby 1.9
45
- 964d1f0 (#12864) Close registry key
46
- ab025bb Revert "Revert "(#12864) Windows: get primary DNS from registry""
47
- 478386d (#10261) Detect x64 architecture on Windows
48
- 6cc881d Use git describe in Rakefile to determine pkg ver
49
- 2043244 (#13678) Remove deprecation msg triggerd by the ipaddress6 fact
50
- d118d81 (#13678) Add filename extension on absolute paths on windows
51
- b050eb1 (#14582) Fix noise in LSB facts
52
- 85654b0 (#13678) Allow passing shell built-ins to exec method on windows
53
- 8f4c016 (#13678) Single quote paths on unix with spaces
54
- 2d164e8 (#13678) Join PATHs correctly on windows
55
- e7e7e8f (#13678) Extend spec tests for expand_command
56
- 0fea7b0 maint: Add shared context for specs to imitate windows or posix
57
- 60d0cd2 (#13678) Fix spec failures on windows
58
- 121a2ab (#13678) Fix quoting in expand_command
59
- 55b1125 (#13678) Add more unit tests for new methods
60
- 9086c0a (#13678) Add RDoc documentation for new methods
61
- 165ace4 (#13678) Convert command to absolute paths before executing
62
-
63
- 1.6.9
64
- ===
65
- b398bd8 (#14334) Fix dmidecode based facts on DragonFly BSD
66
- 6c46b2c (#14332) Correct stubbing on Ubuntu
67
- 753f3a4 Revert "(#12864) Windows: get primary DNS from registry"
68
- ac51593 Wrap dmidecode/pciutils in ifarch block
69
- fbaa8fe (#11511) Correct lsbrelease specfile filename
70
- 14eee2b (#12864) Windows: get primary DNS from registry
71
- 2842c96 Update rpm spec file
72
- 515fd65 (#11511) Split lsb facts into multiple files
73
-
74
- 1.6.8
75
- ===
76
- b86fe4c (#12831) Add rspec tests to have_which method in Resolution
77
- 70be957 (#12831) Fix recursion on first kernel fact resolution
78
-
79
- 1.6.7
80
- ===
81
- ab9e26c Updating CHANGELOG and lib/facter.rb for Facter 1.6.7rc1
82
- bdbf332 (#12720) Add Solaris CPU info to 'processorN' fact.
83
- a7f5924 (#12813) Redirect lspci output to /dev/null
84
- 6ec2863 (#12669) Preserve timestamps when installing files
85
-
86
- 1.6.6
87
- ===
88
- e046144 Updated CHANGELOG for 1.6.6rc2
89
- c273d34 Make ec2 facts work on CentOS again (#12666)
90
- c218d84 (#12362) Use Tempfile to generate temp files
91
- f6bbe14 (#12170) Adds gem spec description Without this patch, the gem spec file is missing a description attribute, which caus
92
- 5c5c330 Changes apple rake task to reflect package name facter instead of puppet.
93
- 9b5cb26 Updating conf/redhat/facter.spec for 1.6.5 release.
94
- 7d3889d (#12079) Fix order-dependent test failure due to odd stubbing.
95
- 7f2a0e2 add a simple test for openstack ec2 facts
96
- cb598aa Support EC2 facts on OpenStack
97
-
98
- 1.6.5
99
- ===
100
- 71d3d3d (#12077) Add pciutils RPM dependency
101
- 1df5b46 (#11566) Add windows support for ec2 facts
102
- d1a33e5 (#11848) Don't hard code ruby install paths in Windows batch files
103
- 14cad7e Build a Rake task for building Apple Packages
104
- 5a60ca6 (#11559) Switch to RbConfig & Provide alias for RbConfig for pre-1.8.5
105
- 88c9429 (#10271) Identifying 'Amazon' using '/etc/system-release'
106
- 2de7b84 (#11661) EC2 rspec tests were using throw not raise to simulate a timeout
107
- b51ccf0 (#11583) Add basic coverage to the ec2 fact
108
- 82692ba (#9599) Generalize zone detection
109
- e6cebd3 (#9599) Add nexenta facts
110
- 9401b78 (#11583) Switch request method to open-uri monkey patch 'open'
111
- 3ccac87 (#9708) Amend requires in specs to use simple requires
112
- b0b5282 (#9708) Confine facts by kernel not operating system and remove confine for hardwareisa
113
- c473e3f (#10309) Remove the with_verbose_disabled method
114
- a99d87c (#10309) Rename tmpfile to tmpfilename to make function clear
115
- d50fc48 (#10309) Move all fixture data in spec/unit/data to spec/fixtures
116
- d6e8523 (#10309) Integrate new PuppetlabsSpec helpers into our existing facter spec code and general spec cleanup
117
- c1604c7 (#10309) Add puppetlabs_spec helper library based on Puppets own puppet_spec helpers
118
- d141e7e (maint) Fix requirement for FileUtils as operatingsystem_spec needs it now
119
- 9c224d3 (#11436) Unify memorysize and memorytotal facts
120
- 5c6322a (maint) Joined conditional statements for domain
121
- a1dba38 (#11196) Scan all arp entries for an ec2 mac
122
- 5cd30eb (#8279) Join ec2 fact output with commas
123
- 4633996 (#9789) Extend coverage of operatingsystem specs
124
- 6d21f90 Move Linux specific virtual tests to correct block.
125
- cb4e294 (#7753) Added error checking when adding resolves
126
- 6201820 (maint) remove redundant arch detection
127
- 4f9da1c (#11328) Fix uptime detection on OpenBSD
128
- 3f99f16 (#11328) Add virtualisation detection for OpenBSD
129
-
130
- 1.6.4
131
- ===
132
- 6406c8f (#11041) Add dmidecode as a requirement for rpm
133
- ed81492 (#10444) Add identification of system boards to Facter
134
- bdbb2da (#10885) Malformed facter.bat when ruby dir contains backreferences
135
- 0bad18b (#10490) Handle case where no macaddress can be found
136
-
137
- 1.6.3
138
- ===
139
- b2a66a9 (#7038) Validate prtdiag output in manufacturer
140
- c9db305 (#10228) Ascendos OS support for various facts.
141
- 6efadbb (#10233) Adds support for Parallels Server Bare Metal to Facter
142
- ce8f572 (#10079) Remove trailing whitespace
143
- e89758d Updated CHANGELOG for 1.6.2
144
- 7b14b77 (#9928) Correct readlines stubbing to return an array instead of an empty string.
145
- 0d6df28 (#9904) Remove windows rspec warning.
146
- f0ccb5e (#9555) Spec tests: Change all cases of tabs and 4 space indentation to 2 space indentation.
147
-
148
- 1.6.2
149
- ===
150
- d7c00f6 (#9852) Fixing watchr on facter
151
- abf636e (#9555) Change all cases of tabs and 4 space indentation to 2 space indentation.
152
- db1b5af (#9830) Add sshecdsakey fact
153
- 1b69791 (#9404) Add memory & update processor facts for DragonFly and OpenBSD.
154
- bce2c69 (#9404) De-clumsify CPU count detection and swap detection on OpenBSD.
155
- cd0ae15 (#9404) Efficiency cleanups for DragonFly facts.
156
- d5511f6 (#9404) Add cross-fact support to facter for DragonFly BSD.
157
- 0dfc4e9 (#6728) Improve openvz/cloudlinux detection.
158
- 2c5ad52 (#6728) Facter improperly detects openvzve on CloudLinux systems
159
- 9101e46 (#7951) added OS support for Amazon Linux
160
- b3784f7 add operatingsystema and operatingsystemrelease support for cloudlinux
161
- 8605bba (#9787) Change rspec format so we use the default, not document
162
- b579613 (#7726) Silence prtconf error message inside zones
163
- db3c606 (#9786) Add aliases: specs, tests, test in rake that points at 'spec'.
164
- dfda9be (#4980, #6470) Fix architecture in Darwin and Ubuntu
165
- 8f938c1 (#6792) Added osfamily fact.
166
- af1ef43 (#6515) Fix for ruby-1.8.5. Switched use of 'line.each' to 'each_line'.
167
- 328ff75 (#6515 and #2945) Fix processorcount for arm, sparc & ppc for linux.
168
- 51329b8 (#3856) Detect VirtualBox on Darwin as well as Linux and SunOS
169
- 83498b5 (#7996) Restrict solaris cpu processor detection
170
- 6e29ff7 (#8615) ENV hash is now local to tests
171
- 124a09b (#8240) Fixed regex pattern for domain
172
- fd93c5f (#7996) Add solaris processor facts
173
- 3f1a163 (#9593) Require rubygems to handle json output for ruby 1.8.7.
174
- c4fe415 (#9295) Added spec tests for Hyper-V detection
175
- ea23417 (#9295) Initial detection of Hyper-V hypervisor
176
- 82351ab Stub out OS and HW model to avoid test failures. Only stub vmware -v (don't expect it) since it needn't be invoked if we already identified Xen or something else.
177
- 16a8cab (#2747) Fix detection of xen0 vs xenu in Xen 3.2.
178
-
179
- 1.6.1
180
- ===
181
- 1f009e0 Updated CHANGELOG for 1.6.1rc4
182
- 3117e82 (#9517) Fix physicalprocessorcount on windows
183
- ef0a9aa Updated CHANGELOG for 1.6.1rc3
184
- 4d93745 (#8491) Prevent repeated loading of fact files
185
- 6db71d4 (#9457) Fix logic for domain fact so hostname, then dnsdomainname and finally resolv.conf is used.
186
- 18cd964 Updated CHANGELOG for 1.6.1rc2
187
- 7edef60 Change count to length for compatibility
188
- 88f343c (#2344) VMware version parsing fix
189
- 7457fe5 SELinux spec test fix for ubuntu
190
- 8bed5bb Clear messages between test runs
191
- f4ad6bf Macaddress spec test needed operatingsystem fact
192
- 6c098cc Rakefile should fail on error
193
- 42c5471 Updated CHANGELOG for 1.6.1rc1.
194
- 6d47012 (#4869) Implement productname as Darwin hw.model
195
- d28d96c (#4508) Xen HVM domU not detected as virtual
196
- d55983e (#9178) Add Oracle Linux identification
197
- 1cb9cb6 (#6610) Fix Autotest proper run
198
- ec04277 (#4228) Ensure MAC address octets have leading zeroes.
199
- 241cddc (#6610) Fix rSpec output format
200
- 3eb3628 Add Scientific Linux CERN detection to facter. Fixes #9260
201
- 0bf827f (maint) Add kernel stubbing for is_virtual fact spec
202
- f810170 (#7957) is_virtual should be false for openvz host nodes
203
- 1414e0b (#9059) is_virtual should be false on vmware_server
204
- 7fb0e6a (#8439) Add interface-specific ip facts for Windows
205
- 5d5848c (#8439) Add ipaddress6 fact on Windows
206
- 7531a2b (#8439) Add ps fact on Windows
207
- ddb67c5 (#8439) Move macaddress resolution on Windows
208
- 0721f2f (#7682) Add complete support for Scientific Linux
209
- a347920 (#9183) Add support for Alpine linux detection
210
- 824fac0 (#8439) Add physicalprocessorcount and processor facts on Windows
211
- 9ef56d6 (#8439) Implement total and free physical memory on Windows
212
- b3e2274 (#8439) Add Facter::Util::WMI module
213
- 00bed7a (#8964) Search mountinfo for selinux mount point
214
- cceb74b (maint) Add stubbing and corrections for domain spec
215
- f7daae3 (maint) Remove global var from domain and hostname
216
- e8d00ec (#8964) Search mountinfo for selinux mount point
217
- 46cbd68 Fix the SPEC file (COPYING no longer shipped, README -> README.md)
218
- c5d63d4 Fix #2766 - silence unknown sysctl values
219
- 2ba8e7b Add document outlining preferred contribution methods
220
- 5d9cc84 (#8660) Fix destdir option on Windows
221
- e329450 (#8247) Fixing arp DNS timeout issue.
222
- bdd9e39 Maint: Fix tests to run on Windows
223
- c1b631d Maint: Refactor detection of windows platform
224
- 9b7a41d Maint: Deprecate facter resolution interpreter parameter
225
- 0356a2a Maint: Fix facter install on Windows
226
- 15d0406 use each_line instead of each for strings in ruby 1.9
227
- 08b3f77 (#7854) Add Augeas library version fact
228
- e84c051 Fixed #7307 - Added serial number fact to Solaris
229
- 6fb6ee5 (#4869) Implement productname as Darwin hw.model
230
- 63c8b11 (#4508) Xen HVM domU not detected as virtual
231
-
232
- 1.6.0
233
- ===
234
- 9404a7a (#7670) Add an acceptance test
235
- 0c23845 maint: Fix spelling of acceptance directory
236
- 926e912 (#7670) Stop preloading all facts in the application
237
- 2255abe (#7670) Never fail to find a fact that is present
238
- 8002c24 (#7507) Fix 1.9.2 test failure
239
- 0635822 Removed inappropriately uncredited Ohai method from ec2 fact
240
- 6b1cd16 (#6614) Update ipaddress6 fact to work with Ruby 1.9
241
- 21fe217 (#6612) Changed uptime spec to be endian agnostic
242
- 19f96b5 (#6728) Facter improperly detects openvzve on CloudLinux systems
243
- 5b10173 (#5135) Fix faulty logic in physicalprocessorcount
244
- 53cd946 Ensures that ARP facts are returned only on EC2 hosts
245
- bfa038d Fixed #6974 - Moved to Apache 2.0 license
246
- d56bca8 refactor the mechanism for allowing for resolution ordering to be influenced
247
- 9f4c5c6 (#6740) facter doesn't always respect facts in environment variables
248
- 7441b32 Partial fix for #6971 - Fix for virtual tests
249
- 7f3e89d (#2714) Fixed faulty test
250
- bfc16f6 (#2714) Added timeout to prtdiag resulution
251
- c2ff833 (#5135) Refactored physicalprocessorcount
252
- 0c4a98b Re-factor. Do not use pure-Ruby file reading against "/proc/cpuinfo" and possibly any entry under "/sys" from the sysfs file system.
253
- cb52b06 Fix. Using sysfs file system entries to count the number of physical CPUs. Fall-back to "/proc/cpuinfo" included for backward-compatibility with legacy systems.
254
- 3efa9d7 (#3856) Add virtualbox detection via lspci (graphics card), dmidecode, and prtdiag for Solaris and corresponding tests. Darwin case is not handled yet.
255
- 7c80172 (#6883) Update Facter install.rb to be slightly more informative.
256
- d31e3f9 (#5394) Document each Facter fact.
257
- af4947c (#6862) Add a default subject for the mail_patches rake task
258
- d6967a0 (#6613) Switch solaris macaddress fact to netstat
259
- e056218 (#6817) Fix for Ruby 1.9 by calling .each_line on a string
260
- 861c2b2 maint: cleanup whitespace
261
- f6c9927 (#6719) Corrected faulty logic in bugfix
262
- e42e57c (#3856) Add virtualbox detection via lspci (graphics card), dmidecode, and prtdiag for Solaris and corresponding tests. Darwin case is not handled yet.
263
- 0b5b546 (#6883) Update Facter install.rb to be slightly more informative.
264
- 7c08270 (#5394) Document each Facter fact.
265
- 06eb3f5 (#6883) Update Facter install.rb to be slightly more informative.
266
- 1063753 (#6862) Add a default subject for the mail_patches rake task
267
- 56b5f10 (#6613) Switch solaris macaddress fact to netstat
268
- fd4f31c (#6817) Fix for Ruby 1.9 by calling .each_line on a string
269
- 72996ff maint: cleanup whitespace
270
-
271
- 1.5.9
272
- =====
273
- 4de8b20 Updated CHANGELOG for 1.5.9rc6
274
- cc67a01 Removed inappropriately uncredited Ohai method from ec2 fact
275
- 69f98da Add facter test for ticket 7039
276
- f91c120 downcase arp output so that the ec2 arp is matched
277
- a75f0f9 (#7039) Pre-load all facts when requesting a single fact
278
- 6b97242 Update CHANGELOG for 1.5.9rc5
279
- acf0bb2 Ensures that ARP facts are returned only on EC2 hosts
280
- 76f544b Updated CHANGELOG for 1.5.9rc4
281
- 09b9f9b (#6795) Update tests to reflect changed exec
282
- 3db1cd0 Updated CHANGELOG for 1.5.9rc3
283
- def3322 (#6795) xendomains: Ignore error output from xm list
284
- f39d487 (#6763) Use Facter::Util::Resolution.exec for arp
285
- 3eb9410 arp: Cleanup indendation
286
- 50b9b3f Updated CHANGELOG for 1.5.9rc2
287
- 2fb8316 Clean up indentation, and alignment in macaddress_spec.rb
288
- 3f0a340 (#6716) fix facter issues on OSX with ipv6 in macaddress.rb.
289
- 43f82ef Update CHANGELOG for 1.5.9rc1
290
- d62e079 Fixed #2346 - A much cleverer EC2 fact
291
- 0411d2e Fixed #2346 - Part 1: Added arp fact for Linux
292
- 5b6f4fa Discussion on ec2 facts - #2346
293
- e917e1a Fixed #3087 - Identify VMWare
294
- d0f0f63 (#6327) Memory facts should be available on Mac Darwin
295
- 458a22d Incremented release to 1.5.9
296
- 4eb64fe Fixed #6719 Typo
297
- ffd80ac (#5011) Adds swap statistics for OSX
298
- 1207765 (#6719) Restricts virtualization types for zones
299
- 8d71db3 Fixed #6616 - Stubbing in VMware tests on Linux
300
- aa959df Remove Solaris from the list of confined systems. It won't get the original lsb facts, and it's nonsensical too.
301
- 2e48e18 Fixed #6695 - Updated id fact for Darwin et al
302
- d718af4 Fix #6679 - Added Scientific Linux to operatingsystem fact
303
- dea6f78 Further fix to #5485 - SELinux facts
304
- 6d6d8da (#2721) Merged patch from Brane GraAnar
305
- 868e7ba (#5485) Made selinux_mode fact work
306
- 214da73 Fixed #5485 - Updated selinux_mode fact
307
- ba2601f Fix for #6495 - Updated interface detection
308
- 93461d9 Fixed #5950 - Solaris ipaddress incorrect after bonding failure
309
- 2e06cdc (#6615) fix missing stub calls in loader specs
310
- 3c7841e (#5666) windows support for facter/id.rb
311
- dd5d5bf (#4925) - MS Windows doesn't do man pages
312
- 52026ee Fixed #5699 - Added processorcount support for S390x
313
- 7dd730d Fixed #5699 - Added virtual support for s390x/Zlinux
314
- d6ce08a Fixed #6611 - Fixed broken HPVM test and rationalised test structure
315
- 84fa3c4 (#6525) change semicolons to 'then' in case statement for ruby 1.9.2 compatibility
316
- 3e6217d Fixes #6521 and other Ruby 1.9 issues
317
- eb5d6fc Fixed #6525 - Test failures on Ruby 1.9.x
318
- cb25119 (#2270) add testing for the new ipaddress6 feature
319
- ea29483 (#2270) add IPv6 support to facter core.
320
- 77eb512 (#2270) Remove DWIM code from ipaddress on Darwin.
321
- f5bf0f5 (#6360) Flush Facter top level cache before every test case.
322
- 0d7a2e6 Fix #4755: add support for GNU/kFreeBSD platform where missing.
323
- b88a088 (#5510) Facter should load custom fact definitions in filename order.
324
- 7a8be16 Refactor #6044 -- use _spec.rb as the pattern for spec tests.
325
- b39f892 Refactor #6044 -- require spec_helper with a consistent path.
326
- a4fe459 Refactor #6044 -- port testing to rspec2
327
- af9134c (#5086) Try using kstat before falling back to 'who -b' to determine uptime.
328
- cbbfe55 Refactor util/uptime.rb tests to reduce duplication using contexts
329
- f0cc2c0 (#4575) win32 support for manufacturer, productname, & serialnumber
330
- c40fc07 (#1423) Memory facts for Solaris
331
- 1985528 (#4754) Change is_virtual logic to not enumerate virtual types
332
- 739040f (#4754) Add support for Darwin and Parallels VM to "virtual" fact
333
- 9332f8a (#5325) Add tests for SPARC manufacturer and product name
334
- 5b561e3 (#5325) Manufacturer and product name on SPARC
335
- 9d99079 maint: Fix spec failures caused by having a space in the path to facter's source
336
- 89da001 maint: require rubygems so hudson can run the specs
337
- 1eef842 Maint: add "Local-branch:" info to mails sent by "rake mail_patches"
338
- f007a9d (#4989) Add xendomains fact
339
- 1fa87a9 JSON support. Works in 1.9.1. Warnings in 1.9.2. LoadError on 1.8.7 for some reason
340
- 43e203c (#5040) fact virtual should detect hpvm
341
- 7cec60a (#5016) is_virtual should be true on solaris zones
342
- f2e66b6 (#5031) Remove redundant puts from RDoc.usage
343
- f4da528 maint: Fix merge error
344
- d62b013 Issue #4889 Fact values should all be strings
345
- 07f186d [#4552] Updating --timing to report in milliseconds instead of seconds
346
- 1f387a5 [#4552] Apply patch from Dean Wilson
347
- 244d2f1 Better fix for Bug 4569: Uptime Fact is incorrect on Windows
348
- 11544c1 [#4289] operatingsystemrelease fact for oel, ovs
349
- e6bfdf9 Fix for bug #4569
350
- 8c4d0cd (#4558) Fail with message on --help errors
351
- 7210429 [#4558] Refactor facter binary using optparse
352
- b5c85de [#4563] Add a --trace option to the binary
353
- ebcb81b [#4558] Refactor facter binary using optparse
354
- b8b7123 (#4567) Remove unnecessary or non-portable redirects
355
- 7ecba71 (#4567) Retain detached HEAD state
356
- 1125e1e Make sure FreeBSD spec also works on systems that have /proc/cpuinfo.
357
- 889e150 Sync rpm spec file from Fedora/EPEL
358
- 725dce0 Rename Reductive Labs to Puppet Labs
359
- ff473ef Updated signing rake task
360
- a85f2b0 [#2865] Fix reporting of virtual facts
361
- f67ec05 [#4567] Add ext/facter-diff to compare output of 2 versions
362
- 4050acc Removing stupid .DS_Store files :(
363
- 016cf03 [#3703] Fix macaddress fact for Darwin
364
-
365
- 1.5.8
366
- =====
367
- ca2da36 Updated install.rb and created man page
368
- 3671c9f [#4583] Refactor uptime to use Resolution.exec
369
- fca8861 [#4594] Reintroduce fix for #1291 from original patch
370
- 32c0cb0 [#4594] Revert "fixes #2573, #2085, #1291..."
371
- e7df4c0 Updated CHANGELOG for 1.5.8rc2
372
- 9c9cabd Better fix for Bug 4569: Uptime Fact is incorrect on Windows
373
- 01a515f [#4289] operatingsystemrelease fact for oel, ovs
374
- b6c0a6b Fix for bug #4569
375
- 51bcebe Fixed Rakefile package task version detection
376
- 81ccb48 Removed references to Reductive Labs in the Rakefile
377
-
378
- 1.5.8rc1
379
- ========
380
- f280703 Incremented version to 1.5.8
381
- 98ef5e8 Updated CHANGELOG for 1.5.8rc1
382
- 4398b36 Updated CHANGELOG rake task
383
- e02be1d [#4156] Updating spec to match Kai's change
384
- bff84c2 [#4156] Applying patch by Kai
385
- b7fe989 [#2330] Update uptime calculation to use /bin/cat
386
- e9a60bc Facter::Manufacturer - sunos test + simplified regex
387
- be411c0 Facter::Manufacturer - test for SunOS and FreeBSD
388
- 67f6604 [#4062] Implement operating system facts for MeeGo
389
- a2bcacd [#2330] Uptime should not make redundant system calls
390
- ce7bd9f Refactor rakefile to use spec.ops, separate rcov task
391
- faaa169 Fix #4352 - Support for detecting KVM virtuals on FreeBSD
392
- 82286e4 Fix #4352 - Support for detecting virtuals (jails) on FreeBSD
393
- b2c2114 Properly wrapped the windows ipaddress fact in a setcode block.
394
- 1bd2ca2 Fixed #3929 - Added user confine to AIX memory facts
395
- 8106bc3 Adding HP-UX support to Facter's IP facts
396
- 83b3ea6 Fixed #3393 - Updates to Facter for MS Windows
397
- ffcae46 Fixed #3403 - Added fact to query vlans; added spec test
398
- d4b8401 Merged Jos Backus patch to remove requirement for ftools altogether
399
- 73dcbb9 Fixed #2355 read hang on /proc/xen/capabilties on RHEL 4.7
400
- d109def Fix #1365 - load all facts via cli
401
- 6c87917 Fixed failing test introduced by previous commit
402
- c5b8d3b Fixes #3740 - split dmi output on regex
403
- 25bf5c2 Fix virtual unit test on non-linux by stubbing kernel
404
- 9a00eae Fixed #2313 - Somewhat essential hardware facts not available on OpenBSD, patch included
405
- e19024b Fixed #2938 - interfaces that don't match ^\w+[.:]?\d+ are ignored
406
- 97879f9 Added support for Slackware in operatingsystem and operatingsystemrelease
407
- 802e6c2 Fixed #3542 - Ruby 1.9: broken unittest, String#each no longer exists
408
- 2f016f3 Fixed #3541 - Ruby 1.9: broken unittest, unexpected invocation: Process.waitall()
409
- 84d3d9f Fixed #3445 - Facter does not handle solaris branded zones properly
410
- b5a8de0 Fix for #3411 install.rb should not put "." first in the tmp_dirs
411
- 8ea33eb Fixed #3447 - OVS and OEL not matching in operatingsystemrelease
412
- aeee83c Fixed #3410 - Warnings in rake spec
413
- 8bf8cb5 Fixes #3397 - is_virtual fact does not detect Linux-VServer
414
- 62b6773 Add kvm support to virtual fact
415
- dca615c fixes #2573, #2085, #1291 - fixes domain and fqdn facts resolution
416
- 86447c8 Revert "use popen3 in Resolution.exec"
417
- 7750f03 Fix #2341 - stricter handling of dmidecode split
418
- f4269d9 Fix #2746 - add architecture support for GNU/kFreeBSD
419
- 50cef83 Fix missing error case
420
- 356cf15 Remove whitespace in DMI facts (#3008, #3011)
421
- feecd39 Only ignore IPs starting with 127.
422
- 68fc123 Added package signing task
423
- 33fb770 use popen3 in Resolution.exec to catch stderr
424
- 8109806 introduce a warn mechanism for debugging
425
- b2c1ca5 Add docs to Mac OS X package creation script and clean out old docs in the preflight
426
- 5412eab Fixed : 2788 - ftools missing in Ruby 1.9
427
- 5b95a12 Fixes #2704. Problem finding install.rb three levels up
428
- 9aef69e Removed all ChangeLog
429
-
430
- 1.5.7
431
- =====
432
- 3a39dd8 Updated ChangeLog and task
433
- 07dca60 Added additional exclusion to rcov process
434
- 8398238 Added rcov support to spec task
435
- 7194454 Updated CI Rake task
436
- 2472048 Clarify licensing as GPLv2 (or any later version)
437
-
438
- 1.5.7rc1
439
- ========
440
- 4bc05e9 Added new format ChangeLog
441
- 5bc8db3 Incremented version and updated CHANGELOG
442
- eb3a8a7 Issue #2414 - add unit test
443
- 7623e25 Fix errors when alias IP's are defined
444
- bfe8a2a Fix 2455 - improve error handling on fact load
445
- 49470cf Fix broken solaris zone tests on EC2
446
- 9515a40 Issue #2548 netblock fact
447
- 33be9e0 Add Darwin netmask support on top of Jim's patch
448
- 9d846b4 Fix #2306 netmask and ipaddress on SunOS and BSDs
449
- 7d4a5f9 Updated Rakefile and moved Rake tasks to tasks/rake directory
450
- 5982deb Added default Rake task
451
- 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.
452
- fe41fb8 Fix #2470 - duplicate entries in interfaces fact
453
- be9e484 Update OS X minor version fact to cope with '10.x' values and provide test coverage switch %x{} call to Facter::Util::Resolution.exec for better testing
454
- f3ad66f Update install.rb to cope with all OS X versions, not just 10.5
455
- c02d3b6 Issue #2292 Add tests for virtual facts
456
- 6c9fec5 Added path fact
457
- 51c6e3d Issue #2314 OpenBSD sysctl
458
- 95e5fea Fix broken ci build with explicit clearing before tests
459
- efc30e7 Change spec output to enable broken build debugging
460
- 6d71410 Fixed CI spec task
461
- 82d97e2 Fix operatingsystemrelease on Red Hat based distros
462
- bee55c4 Consolidate operatingsystemrelease for CentOS, Fedora, oel, ovs, and RedHat
463
-
464
- 1.5.6
465
- =====
466
- f4cb619 Updated CHANGELOG and bumped version for 1.5.6
467
- dcdd5ce Fixes #2307 - Minor fix for zone in virtual.rb
468
- ba44f08 Removed --no-thread and --no-chain-reply-to from rake mail_patches task
469
- 806f49f Added facter branding to format patch command
470
- 96c015c Added spec.executables to Facter gemspec in Rakefile
471
- d97a63e Sync rpm spec file with latest from Fedora/EPEL
472
-
473
- 1.5.5
474
- =====
475
- dad4569 Added path to Rakefile
476
- 365cb8e CHANGELOG updates
477
- 68e0b24 Fix #2278 Revert fix for 2120
478
- b533e78 Tighten operatingsystemrelease regex on CentOS < 5
479
- 48aa135 Fix operatingsystemrelease for CentOS < 5
480
- 253fef1 Added spec files to package list Fixed CI rake tasks
481
- b37d683 Added install.rb to Rakefile package task
482
- 7995d05 Bumped release to 1.5.5rc2
483
-
484
- 1.5.5rc2
485
- ========
486
- 1de8891 Bumped release to 1.5.5rc2
487
- 56760d3 Facter #2120 - Solaris support for Facter[virtual]
488
- 2fb91ca Tests for #2227 - multiple interfaces on Darwin
489
- 00b192a Added SELinux tests
490
- aecac08 Fix #2155 - architecture facts on Gentoo
491
- 831d937 Refactor #2154 - Modified patch from Benedikt Bohm to simplify openvz and vserver detection
492
- 7f3d237 Cleaned up Rakefile and removed requirement for Reductive Labs build library
493
- a6adf59 Facter ticket 2214 - Fix facts for OVS
494
- e101faf Fixed #2131 - Facter doesn't populate lsbmajdistrelease on OEL (also OEL/OVS and other facts)
495
- 73e6656 Facter fix #2231 typo
496
- 2518312 Fix #2236 - don't use each_line on arrays
497
- f94abfc Fixed #1327 - Added SELinux facts
498
- 8768371 Fixed #2119 - Added support for non-global Solaris 10 zones
499
- 23a5b3d Fixed #2215 - Added support for SUSE Linux Enterprise Desktop to operatingsystem and operatingsystemrelease
500
- e93b1e6 Added support for ArchLinux to operatingsystem fact
501
- 8e4a689 Fixes #2169 Correctly recognises dom0 and domUs
502
- 636a91d Partial fix for #2191 - Facter compatibility for Ruby 1.9
503
- 9df0583 Added COPYING in and CHANGELOG updates
504
- 516402c Fixing #1918 - facter --puppet always works
505
- d89ea7a Fixing ifconfig warnings generated on OS X
506
- 7fa2576 Fixed #2132 - support for named interface aliases under linux
507
- 7a81945 correctly compare values - fixes #2021
508
- 1288b26 Fixed #2080 - IPAddress resolutions should be reordered
509
- a6d6ba5 Use resultion.exec util instead of which checks
510
- 89a3aa8 Fix to stdout in resolution.rb
511
- add6d47 Fixed #2081 - Fixed interfaces fact for vlan subinterfaces
512
- 8def362 Fixed #2063 - added kernelmajversion fact
513
- 5d94f7f Fixed #2055 - SunoS Interface error
514
- 9376e5b Fixed #2044 - virtual fact thread fix
515
- c754949 Fix for rake task for reductive-build library
516
- 75db918 Fixed lib install permissions
517
- ba2e470 Fixed #2040 - Facter should provide a macosx_productversion_major fact
518
- 77fa46b Fix virtual fact if xen but /proc/virtual present
519
- 9722e1f Fixed #2003 - Added is_virtual fact
520
- 7a30a6a Fixed CHANGELOG
521
- c6c30a4 Fixed #2035 - Missing brace for OSX preflight
522
- b6f0f99 more consistent indentation and alignment. also removal of trailing whitespace
523
- 9bc174f Further fix #2032 - close IO
524
- 6b904a0 Added EC2 facts
525
- 86b01bf Fixed #2032 - file.open hanging on /proc/uptime on some platform
526
-
527
- 1.5.4
528
- =====
529
- 91d8cb7 Updated to version 1.5.4
530
- a99d043 Fixed #1966 - Added physicalprocessorcount fact
531
- 94ea807 This commit refs #1555, #1898 and fixes #1761
532
- 04389db Added support for Oracle VM Server to operatingsystem and operatingsystemrelease
533
- 552f150 Added support for Oracle Enterprise Linux to operatingsystem and operatingsystemrelease
534
- a932a69 Added README.rst for Facter
535
- e52f962 Added Reductive Labs build library
536
- 0726437 Updated README
537
-
538
- 1.5.4rc1
539
- ========
540
- f4bc74d Fixing #1927 - failing facts don't kill Facter
541
- 063e4dc Fixed #1850 - Facter updates for Ruby 1.9
542
- b85ab0a Fixed #1924 - Fixed lo / lo:0 local interface matching
543
- 4dcd012 Fixed generic uptime fact
544
- d93ca69 Fixed Ubuntu operatingsystem identification
545
- effb82f Cleaner fix for #1926
546
- ccafc00 Fixed #1926 - IPAddr to_s issue
547
- d9eef19 Added timezone fact
548
-
549
- 1.5.3
550
- =====
551
- b86a1fb Updated to version 1.5.3
552
- a73e803 Fixing the usage of the macosx util module; I somehow missed renaming it here
553
- 23289bd Fixed uptime refactor issues on non-Linux platforms Signed-off-by: James Turnbull <james@lovedthanlost.net>
554
- a194c91 Adding mail_patches rake task
555
- a82f476 Renaming Facter::Macosx to Facter::Util::Macosx
556
- 1f1fa9b Fixing #1838 - profiler failures don't throw exceptions
557
- 5f202c9 Fixed #1867 - Fixed OpenSuSE detection
558
- 0bcdb71 Fixing #1854 - Adding ArchLinux support
559
- fab9d1c Added network fact
560
- da52e30 Fixed #1870 - Format all subnet masks as human-readable
561
- c2de35f Added uptime facts
562
- 02c2912 Refactor - rename ipmess to interfaces
563
- db4face Fixed autotest on win32
564
- c149b49 Fix bug #1870 and add interface fact support for darwin systems
565
- aa56886 Refactoring the IP support, and fixing #1846.
566
- 91e25b9 Fixing indentation everywhere
567
- 074eda9 Fixing autotest, now that vendor/ is gone
568
- 01754f6 Removing the vendor/ gems.
569
- e6d987d Fixing #1761 - Solaris no longer uses /etc/release
570
- a70184a Fixed #1791 - support for virtual fact on Solaris 10
571
- 99833a1 Fixed #1793 - Added more Solaris 10 facts
572
- 85b2a55 minor fix to operatingsystemversion to correctly parse /etc/release on OpenSolaris 2008.11.
573
- 8247304 Fixed errors on unrecognised option in binary
574
- 0fe4611 Added ci namespace and Rake tasks
575
- 7ddea77 Fix for #1727 - id fact should not rely on whoami on Solaris Signed-off-by: Martin Englund <martin@englund.nu>
576
- f9a346a Sync specfile with latest from Fedora
577
- fd07cd2 Removed EPM task
578
- 43d0aea Fixed #1697 - Typo in ipaddress.rb causes timeout under Solaris 10 SPARC
579
- 4e707c6 Fixed #1650 - OS X package creation script should be more selective about cleaning out prior versions
580
- 8a38aa5 Added Ubuntu to a variety of confines
581
- 051c843 Removed ENV path setting from virtual.rb
582
- 6393e82 Fixed #1634 - Update virtual fact to differentiate OpenVZ hardware nodes and virtual environments
583
- de39f6c Revamp domain resolution
584
- 4d7b44c Fixed #1619 - Applying patch by seanmil, adding support for SLES.
585
- 84b83c4 Fixed #1509 - Fixed version recognition for SLES.
586
- 20650ac Fixes #1582 - Fix MAC address reporting for Linux bonding slave interfaces
587
- a86577c Fixing the GPL/LGPL incompatibility by choosing the oldest-mentioned license (GPL).
588
- c1d937c Fixed #1575 - CentOS fix for Facter SPEC file
589
- 1d00253 Fixed #1547 - finally killed dots in IP address facts
590
- 9c9c79a Fixed #1567 - fixed createpackage.sh output
591
- d4cf657 Fixed #1569 - createpackage.rb bug
592
-
593
- 1.5.2
594
- =====
595
- a80779b Updated to version 1.5.2
596
- 0e49580 Updated to version 1.5.2
597
- 6e0a1f3 Fixes #1558 - Adjusted virtual fact to allow non-root users to execute it
598
- 4998d3b Fixes #1562 - Removed facter from PREREQS
599
- 0fac704 Fixed #1558 - Updated virtual fact for xenu and xen0
600
- 5c50bc3 Fixed #1555 - added operatingsystemrelease for Solaris
601
- e503857 Fixed #1559 - update to dmidecode fact
602
- 518393e Fixed . dot escaping
603
- 0356b6e Updated to version 1.5.1
604
-
605
- 1.5.1
606
- =====
607
- bff615c Updated to version 1.5.1
608
- c2eb5ba Updated to version 1.5.1
609
- bc35a3b Adding a rake task for creating an archive.
610
- d24504e Added a Process.waitall thread when there's a timeout, to avoid zombies.
611
- bd87aa0 Set the timeout for the host-based and resolv-based resolutions to 2.
612
- e6aa39f Updating changelog for previous two commits
613
- 095eb15 Applied patch by josb to fix CentOS version detection.
614
- 422dd11 Facter fix #1422, no default timeout
615
- ca93b81 Adding better SuSE detection for both operatingsystem and release.
616
- b7be581 Add unit rspec tests for ticket 1425
617
- af81fb3 Extract ifconfig output to data directory
618
- 2546c53 Add sample test and strawman solution for IP parsing code
619
- b33d8c6 Add module level tests for Facter::IPAddress
620
- 590a3d0 Fixes #1492 - added kernelversion fact
621
- d8b708b Fix ticket 1425 on Solaris
622
- b91ee5e Remove duplicated code paths
623
- df8fc8c fix terrible error with overwriting permissions
624
- 91ca4ab Fixed #1490 - Added virtual fact
625
- ff45c86 Feature #1487: Package creation scripts for Mac OS X
626
- 9b42182 Modified the operatingsystem fact for Debian so it looks in /etc/debian_version instead of /proc/version.
627
- e1023de Feature #1478: Allow specification of --bindir --sbindir --sitelibdir --mandir --destdir in install.rb
628
- 845ae94 Feature #1475: CONFIG['bindir'] CONFIG['sbindir'] have undesirable defaults on OS X 10.5
629
- a12608e Fixes #1467 - macaddress not set on Ubuntu
630
- d999d95 Don't try and run lsb_release on windows
631
- 1eb94d3 Bug #1434 Don't execute which on windows
632
- bb235e3 Use rbconfig to detect host cpu
633
- 3f180b3 Get DNSDomain from WMI to set domain
634
- dc7363e Set macaddress on windows platform
635
- 0df872b Get kernel version via wmi
636
- 3ea1905 Use ipconfig to determine ip address
637
- 5e09ea1 Use rbconfig to detect windows as no uname binary
638
- ded53b0 Fixed Rakefile to include additional files including tests et al
639
- 1cf98d1 Adjusted version to be in line with previous standard
640
- ff0e90b Adding (apparently now required) author info to the gem spec
641
-
642
- 1.5
643
- ===
644
- 7042c46 Updated to version 1.5
645
- e98efd3 Updated to version 1.5
646
- d49d63c Updating the changelog for 1.5
647
- 88fe243 Fixed formatting
648
- 8c91649 Fixed #1400 - OperatingSystemRelease should now work on CentOS
649
- 927b3a1 Adding a default case for the manufacturer information.
650
- 9b464de Further fixes #1378 - updated dmidecode for NetBSD
651
- a44d6c3 Fixes #1378 - update manufacter.rb facts to support BSD
652
- 9581190 Partial fix for #1345 - BSD interfaces with aliases now select the first address by default
653
- 2ef2041 Retaining 'timeout' as the settor, but using 'limit' as the getter.
654
- e22b408 Changed 'timeout' option to 'limit'
655
- 145cee2 Setting the timeout for the puppetversion fact to 1.5.
656
- 40a9c1d Fixing some warnings in various classes.
657
- 0303885 Fixes #1376 - Display memory facts for AIX
658
- 2ac29ac Added processorcount and type facts to AIX
659
- 0b0892d Fixes #1334 - Forced Facter to use LANG=C
660
- def18b5 Fixes #1357 - change ps syntax for OSX and BSD
661
- ce7b74c Rejustifying all of the whitespace in the facts, yay.
662
- 2ee5d29 Refactoring how recursive searches are detected.
663
- d322df9 Refactored so each fact resolution can specify a separate timeout, but the default is still 0.5.
664
- 9a1882e Retrieve hardwaremodel for AIX from sys0 modelname.
665
- b574c6a Refactered ipmess.rb and util/ip.rb to support separate *BSD logic for *BSD aliased interfaces.
666
- d9bd388 Refactor of netmask fact - fixes ticket #66
667
- 09bc48c Testing gitosis
668
- f9961c7 Fixes for ticket #60
669
- a12d3d8 Removing old test/unit tests.
670
- 400bab9 Adding a timeout to fact retrieval, fixing #56.
671
- d235f26 Reverting the version.
672
- 7e84cdb Updated CHANGELOG
673
- a5a72bd Added LSB Major Dist Release fact fixing #41
674
- fc6d1c9 Added support for AIX fixing ticket #56
675
- 17f916f Updated Red Hat spec file for new version and files
676
- 86e0708 Incremented version number to 1.5
677
- edbfc44 Adding a --puppet option to facter to load Puppet facts.
678
- bb41db0 Switching to a search path registration system.
679
- 07a3d47 Moving the puppet-related loading tests to an integration test.
680
- 03258eb Retrieval of fact values now autoloads facts.
681
- e02b0b3 Updated version. Moved most facts to seperate files.
682
- 9c91a6d Facter no longer loads all facts by default.
683
- aaaf767 Moving the version and ruby facts to a separate file.
684
- f1acbc0 Switching Facter to using the new loader.
685
- bb92493 Fixing the last few occurrences of Facter::Resolution instead of Facter::Util::Resolution.
686
- dcfc171 Fixing the test so it doesn't break other tests.
687
- 1ba2bed Moving all of the support classes to util/.
688
- be0a803 Creating a 'loader' class to handle loading facts for the collection.
689
- cc9e221 Adding the 'each' method back into Facter.
690
- 48b8744 Updating the executable to not use Facter.each.
691
- 5889e43 Fixing warnings and interfaces.
692
- bfc4996 Moving Facter's container behaviour into a separate class.
693
- e3c1fda Splitting the instance code into a Fact class.
694
- 121d291 Adding all of the tests for the Facter::Resolution class.
695
- 8971979 Reorganizing my new tests so they match the autotest discovery.
696
- b8de4e4 Simplifying Confine a bit
697
- c5492c2 Splitting the different classes in Facter up, and adding some tests.
698
- 4f39ec8 Adding autotest hooks
699
- fef9b7d fixing whitespace
700
- 567549b Closes #1145 - fixed bad interface names by replacing : with _
701
- d449472 Updated CHANGELOG
702
- bd3b316 removing .swp file
703
- e11edfb Switching from test/unit to rspec, and fixing a couple of small test failures.
704
- 1a5ba71 Fixed Solaris detection of lo0 for ticket #46
705
- 92b43e0 Added require util ip.rb file
706
- 0c4ac42 Fixed #46 - refactor ipmess.rb
707
- a633aeb Added new files
708
- c312df8 Further updates to split facts and move support functions
709
- df4636a Split out facts from facter.rb and moved all support code to util
710
- 4bb9ed4 Added support for multiple interfaces, macaddress and netmask facts for Linux, *BSD, and Solaris
711
- 64f9fe9 Fixed conflict merge
712
- 2b06799 Revert "Fixed ticket #50 - added selinux facts"
713
- ecc1f0c Added Ubuntu operatingsystem and operatingsystemrelease fact support
714
- 96cf3d6 Added Debian release version support
715
- b3962ef Fixed ticket #50 - added selinux facts
716
- d7d82fc Fixed ticket #48 - CentOS operatingsystemrelease fact now reporting correct value
717
- 2af364c Added Mandrake support for operatingsystem fact - closed ticket #47
718
- 85fbf8f Added index to imess.rb fixing Ticket #43.
719
- be7c30b Fixed ticket #44
720
-
721
- 1.3.8
722
- =====
723
- 74621b5 Updated to version 1.3.8
724
- 7f1c840 Updated to version 1.3.8
725
- 4d83f6f Updating version in changelog
726
- 00ab1f3 Removing the package hosts, so packages are no longer created at all
727
- 57c76dd Updated CHANGELOG
728
- b28ce1b Added require for rdoc/ri/ri_paths to address Puppet #753 and Facter #40
729
- dce6245 Revert "Adjusted :kernel confine to make it more in line with others"
730
- c5e6f60 Adjusted :kernel confine to make it more in line with others
731
- a4698ce Updated CHANGELOG
732
- 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
733
- 6113375 Added macaddress fact support for FreeBSD and OpenBSD - closes #37 Added hardwareisa support for *BSD platforms - closed #38 Facter now detects the Mandriva distribution - closes #39 Facter now correctly detects ipaddress on NetBSD - closes #42
734
- 8426aaf making the install script executable
735
- 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
736
- 20986d9 Set operatingsystemrelease to the major release on RHEL and Fedora
737
- 43b5640 Remove tabs; don't fail if dmidecode doesn't return expected information
738
- 68449a9 Adding manufacturer code, as requested by digant on the Puppet Trac site.
739
- 750a0c6 Add YAML output option to the help text.
740
- 8a67e32 Fixed problem with executing system_profiler and sw_vers on non Darwin hosts.
741
- 43933dd Fixed problem where facter referenced puppet plist utility library.
742
- 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.
743
- 86e3d8e Setting the ldapname so it is guaranteed to be a string
744
- b582612 Applying patch from Valentin Vidic, fixing open filehandles
745
- 09261ac Updated to version 1.3.7
746
- 94ca0c3 Updated to version 1.3.7
747
-
748
- 1.3.7
749
- =====
750
- 3e12345 Adding release tag REL_1_3_7
751
- 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.
752
- 4880c69 Applying patch from #36 by psychedelys
753
- 11cff7b Fixing Facter.flush
754
- df57cec Fixing #33 -- we now only return the first mac address
755
- 31039dc Applying patch from Adam Jacob that makes FACTERLIB work
756
- 392d8f2 Applying patch from #35.
757
- 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.
758
- 38cd613 Sync with Fedora specfile
759
- 4cf0016 updating docs a bit
760
- c1a02be Updated to version 1.3.6
761
- b333df2 Updated to version 1.3.6
762
-
763
- 1.3.6
764
- =====
765
- ce5258b Adding release tag REL_1_3_6
766
- cc672ba disabling solaris package generation for facter
767
- 067dc2c updating changelog for 1.3.6
768
- b013e21 Applying patch from #29.
769
- 7b665cc Fixing ssh key facts so they only include the key, not the type.
770
- 0674780 Make specfile work for FC < 5 and RHEL < 5
771
- ea65bdd Reconciling with Fedora specfile
772
- 4dc1c37 Do not try and check the command if which is not available; fixes trac #30
773
- c7a9e19 Updated to version 1.3.5
774
- bae0b49 Updated to version 1.3.5
775
- 9a73c72 Updated to version 1.3.5
776
-
777
- 1.3.5
778
- =====
779
- 5192d94 Adding release tag REL_1_3_5
780
- 4339b46 Fixing #26 -- using Resolution.exec instead of executing directly, and also calling lsb_release for every fact, instead of just once at startup
781
- 82fd890 Updated to version 1.3.4
782
- 95352bc Updated to version 1.3.4
783
- 677c986 Updated to version 1.3.4
784
-
785
- 1.3.4
786
- =====
787
- e882251 Adding release tag REL_1_3_4
788
- ca498a2 updating changelog for 1.3.4
789
- d75744b Adding patch from #21, adding lsb_release facts
790
- fe0f2f2 Adding yaml support, as requested in #24
791
- 4abbce9 applying patch from #18.
792
- 7407e0c Fixing facter so it does not fail when an unknown fact is asked for
793
- e2185ce Sorting the facts when they are all output
794
- c96cf6a Adding fqdn fact
795
- 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.
796
- 07a42e6 Applying patch from #22
797
- 610fb5d Applying patch in #23.
798
- 3569253 Applying memfree patch from #17.
799
- b9beaa8 updates
800
- 722e6f2 doc updates
801
- e2337bd doc updates
802
- 2987d50 updates
803
- 044f19c adding docs
804
- 6f01dec adding docs
805
- 4c04592 Updated to version 1.3.3
806
- 474d65d Updated to version 1.3.3
807
-
808
- 1.3.3
809
- =====
810
- f3333f3 Adding release tag REL_1_3_3
811
- 682b97a updating changelog for 1.3.3
812
- 747d45a Adding the ability to retrieve facts from the environment.
813
- 86fdc87 Updated to version 1.3.2
814
- c4659bd Updated to version 1.3.2
815
-
816
- 1.3.2
817
- =====
818
- 3869edf Adding release tag REL_1_3_3
819
- ea96381 simple packaging updaets
820
- c2aa508 Adding thread exclusivity to memory and cpu reading
821
- ace180f Re-adding these files, since Matt has found a solution to the hanging problem.
822
- ba2e189 removing processor.rb in case it has the same problems as the memory file
823
- 9f14df9 Deleting this file until the hanging problems are resolved
824
- 157f68e fixing license issues
825
- a0a33e6 fixing spec file again
826
- 31caa08 Updated to version 1.3.1
827
- 8ad0323 Updated to version 1.3.1
828
- 5e34a1f Updated to version 1.3.1
829
-
830
- 1.3.1
831
- =====
832
- 60be696 Adding release tag REL_1_3_1
833
- 73aeade adding a call to dnsdomainname before domainname
834
- 6ac796d Fixing #15. Just adding rescue blocks around the load statements.
835
- 81f451b updating for 1.3
836
- b543152 Updated for use with latest Fedora ruby packages
837
- 15f2f44 Updated to version 1.3
838
- 15931ef Updated to version 1.3
839
- 261d909 Updated to version 1.3
840
-
841
- 1.3
842
- ===
843
- 92c48b9 Adding release tag REL_1_3
844
- 539d593 fixing installer so it does not install batch files on darwin
845
- 4c1d5e0 trying to fix facterbin rubylib setting
846
- 7f2504d fixing test so that it works even if rubylib is not set
847
- 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
848
- 4296f1f fixing the linux processor stuff so it only gets called on linux
849
- 558d05a changing the syntax of the fact confines
850
- 9908628 Adding some documentation to the binary
851
- 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.
852
- ee7d3ca fixing test to ignore differences in memory
853
- 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.
854
- c7cfd08 Adding patch from #11, with slight modifications.
855
- 59cea90 Adding patch from #11, with slight modifications.
856
- f3cc5e3 Adding the ability to specify tags as hashes or arrays, as requested in #112.
857
- 01d37d9 Getting rid of the autoload method entirely; facts are now only loaded at startup.
858
- 3a0181e fixing linux memory stuff
859
- 6932a95 accepting patch in #10, although with more abstraction, and creating a module for the memory functions
860
- 165a401 Accepting the patch in #9, with some modifications.
861
- af062c6 adding solaris pkg stuff
862
- 8794e46 Updated to version 1.2.1
863
-
864
- 1.2.1
865
- =====
866
- 77344ea Adding release tag REL_1_2_1
867
- b208f47 fixing small bug that only occurs with gems
868
- 999929e Updated to version 1.2.0
869
-
870
- 1.2.0
871
- =====
872
- afe3c30 Adding release tag REL_1_2_0
873
- 99b61e7 Adding final autoloading work.
874
- 97f1a5e updating changelog for 1.2.0
875
- 87bbd50 adding another test for the exe
876
- f745454 Adding ruby, puppet, and facter version facts
877
- 6c01e04 Fixing install and tests so that there are no errors, hopefully.
878
- 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.
879
- fe782b9 Accepting the patch from #5
880
- 6c37a20 Removing ruby as a prereq
881
- c78d113 Converting rakefile to the new build system
882
- fadc8c5 Minor changes for hte Fedora Extras review
883
- e3e4a03 fixing rake file to build and copy rpms automatically
884
- 46996fa updating changelog for 1.1.4
885
- aab8687 Updated to version 1.1.4
886
-
887
- 1.1.4
888
- =====
889
- 571683b Adding Release tag REL_1_1_4
890
- 0b7dce7 Fixing installer to put the facter executable in /usr/bin instead of /
891
- 3c71757 Updated to version 1.1.3
892
-
893
- 1.1.3
894
- =====
895
- d494ac2 Adding Release tag REL_1_1_3
896
- 3a230a0 adding 1.1.3 changelog
897
- 2e407d4 Identifying centos
898
- cc4a943 updates
899
- 4579f8f Updated to version 1.1.2
900
-
901
- 1.1.2
902
- =====
903
- 9279ca8 Adding Release tag REL_1_1_2
904
- d36885f Adding ldapname capabilities
905
- a4309b4 Automatically update version and release in the specfile for new releases
906
- 2d84edd Fix specfile in accordance with Fedora Extras guidelines
907
- 2c0999e RPM creation now works
908
- 62c050a Working on packaging
909
- 2c99812 Updated to version 1.1.1
910
-
911
- 1.1.1
912
- =====
913
- 6fef6af Adding Release tag REL_1_1_1
914
- 35ed5f4 Fixing bug when a fact with no resolutions is asked for
915
- a295c73 Fixing bug when a fact with no resolutions is asked for
916
- 5a0bd4a Updated to version 1.1.0
917
-
918
- 1.1.0
919
- =====
920
- 81657d1 Adding Release tag REL_1_1_0
921
- 1ed4216 Redoing how tags work.
922
- d9c86d5 updating everything to essentially disable docs generation
923
- 64a86db Adding Release tag
924
-
925
- 1.0.2
926
- =====
927
- 8c91fb1 adding release tag
928
- 1dc02f9 adding extra "return nil" statements, and hopefully fixing the test for cygwin
929
- b542ec5 Updated to version 1.0.2
930
- f1c8f10 adding changelog
931
- 7df3411 adding fixes Eric Sorenson found with cygwin
932
- c646434 updates
933
- fe90bf1 Updated to version 1.0.1
934
- 3f0186d Modified version
935
- 58538d2 removing filehandle-based tests
936
- 8cb9662 updating INSTALL with patch from ian
937
- 7cec936 moving things to the trunk
938
-