true and false shouldn't be strings

This commit is contained in:
mh 2009-02-24 01:09:31 +00:00
parent 747da24243
commit 842da8d62b

View file

@ -3,6 +3,6 @@ Facter.add("mysql_exists") do
setcode do
mysqlexists = system "which mysql > /dev/null 2>&1"
($?.exitstatus == 0).to_s
($?.exitstatus == 0)
end
end