diff options
author | James Turnbull <james@lovedthanlost.net> | 2009-02-03 22:09:17 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-02-03 22:09:17 +1100 |
commit | d93ca69ddf5194438f06a770dcde943c0f0b635d (patch) | |
tree | 5449aad9023978189fcd9f61ce2cd2b19905c882 | |
parent | effb82f0815f19e3ec933e9e7465d4fc2ee1e7c8 (diff) | |
download | facter-d93ca69ddf5194438f06a770dcde943c0f0b635d.tar.gz facter-d93ca69ddf5194438f06a770dcde943c0f0b635d.tar.xz facter-d93ca69ddf5194438f06a770dcde943c0f0b635d.zip |
Fixed Ubuntu operatingsystem identification
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | lib/facter/operatingsystem.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,6 +1,8 @@ -1.6.0: +1.5.4: Fixed #1926 - IPAddr to_s issue + Fixed Ubuntu operatingsystem identification + 1.5.3: Added network fact diff --git a/lib/facter/operatingsystem.rb b/lib/facter/operatingsystem.rb index 258fcde..918f119 100644 --- a/lib/facter/operatingsystem.rb +++ b/lib/facter/operatingsystem.rb @@ -1,3 +1,5 @@ +require 'facter/lsb' + Facter.add(:operatingsystem) do confine :kernel => :sunos setcode do "Solaris" end |