summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRein Henrichs <rein@puppetlabs.com>2010-08-18 15:50:39 -0700
committerRein Henrichs <rein@puppetlabs.com>2010-10-04 14:20:58 -0700
commit11544c16e514353f5fde5361a55cf04feb91fc64 (patch)
treea49bb8871cf8ed0d62cc5f9439d87c54fbdf0b63 /lib
parente6bfdf9bf7a0d929dc7d882d3ea3bcb7372b75e0 (diff)
downloadfacter-11544c16e514353f5fde5361a55cf04feb91fc64.tar.gz
facter-11544c16e514353f5fde5361a55cf04feb91fc64.tar.xz
facter-11544c16e514353f5fde5361a55cf04feb91fc64.zip
[#4289] operatingsystemrelease fact for oel, ovs
When Facter returns operatingsystem as "oel" or "ovs", the operatingsystemrelease fact does not catch these properly, causing an error. Specs added to catch failure and case statement updated to catch "oel" and "ovs" as well as "OEL" and "OVS"
Diffstat (limited to 'lib')
-rw-r--r--lib/facter/operatingsystemrelease.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/facter/operatingsystemrelease.rb b/lib/facter/operatingsystemrelease.rb
index 30f2989..280208b 100644
--- a/lib/facter/operatingsystemrelease.rb
+++ b/lib/facter/operatingsystemrelease.rb
@@ -8,9 +8,9 @@ Facter.add(:operatingsystemrelease) do
releasefile = "/etc/fedora-release"
when "MeeGo"
releasefile = "/etc/meego-release"
- when "OEL"
+ when "OEL", "oel"
releasefile = "/etc/enterprise-release"
- when "OVS"
+ when "OVS", "ovs"
releasefile = "/etc/ovs-release"
end
File::open(releasefile, "r") do |f|