summaryrefslogtreecommitdiff
path: root/lib/facter/mysql_exists.rb
blob: d08dabe93c6bbb8858e1ddefc27b02263d977319 (plain)
1
2
3
4
5
Facter.add("mysql_exists") do
    setcode do
        File.exist? '/usr/bin/mysql'
    end
end