Promote Sabayon to a fully supported OS with package and service resource support

This commit is contained in:
2011-05-23 08:03:33 +01:00
parent 42b786e9ad
commit 98bf0e8ca0
3 changed files with 66 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
require 'facter/lsb'
Facter.add(:operatingsystem) do
confine :kernel => :linux
confine :has_entropy => true
setcode do
if FileTest.exists?("/etc/sabayon-release")
"Sabayon"
end
end
end