diff options
author | Luke Kanies <luke@madstop.com> | 2008-08-27 06:16:35 +0200 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-08-27 15:07:23 +1000 |
commit | 0356b6e5f37ecb70fa8e3df5e46da36d3da9e7d9 (patch) | |
tree | 26b2c9e6179bf108d2a4e445f98a9ebb57b592f4 | |
parent | c2eb5ba2597fc76be0d16a93a1aaa5e7a6394b17 (diff) | |
download | facter-0356b6e5f37ecb70fa8e3df5e46da36d3da9e7d9.tar.gz facter-0356b6e5f37ecb70fa8e3df5e46da36d3da9e7d9.tar.xz facter-0356b6e5f37ecb70fa8e3df5e46da36d3da9e7d9.zip |
Updated to version 1.5.1
-rw-r--r-- | CHANGELOG | 23 | ||||
-rw-r--r-- | lib/facter.rb | 2 |
2 files changed, 23 insertions, 2 deletions
@@ -1,4 +1,4 @@ -1.5.x: +1.5.1: Added a Process.waitall thread when there's a timeout, to avoid zombies. Set the timeout the host-based and resolve-based resolutions to 2. @@ -16,6 +16,27 @@ Fixes #1467 - macaddress not set on Ubuntu + Adding a rake task for creating an archive. + + Adding better SuSE detection for both operatingsystem and release. + + Add sample test and strawman solution for IP parsing code + + Add module level tests for Facter::IPAddress + + Fixed #1425 - Solaris + + Feature #1487: Package creation scripts for Mac OS X + + Feature #1478: Allow specification of --bindir --sbindir --sitelibdir --mandir + + Feature #1475: CONFIG['bindir'] CONFIG['sbindir'] have undesirable defaults on + + Fixes #1467 - macaddress not set on Ubuntu + + Enabled a number of Windows facts - operating system, domain, ipaddress, macaddress, + kernel, ipconfig and others + 1.5.0: Fixed Rakefile to include additional files including tests et al diff --git a/lib/facter.rb b/lib/facter.rb index 36889c8..bb398da 100644 --- a/lib/facter.rb +++ b/lib/facter.rb @@ -27,7 +27,7 @@ module Facter include Comparable include Enumerable - FACTERVERSION = '1.5.0' + FACTERVERSION = '1.5.1' # = Facter # Functions as a hash of 'facts' you might care about about your # system, such as mac address, IP address, Video card, etc. |