Added fact which checks if ruby augeas libs are installed.

This commit is contained in:
Timo Mkinen 2010-10-08 11:20:59 +03:00
parent dc3e87139c
commit 2bfbe82367

View file

@ -0,0 +1,11 @@
Facter.add("augeas") do
setcode do
begin
require "augeas.rb"
true
rescue LoadError
false
end
end
end