hapi-fhir/vagrant/chef/cookbooks/mysql/libraries/provider_mysql_client_rhel.rb

14 lines
225 B
Ruby
Raw Normal View History

2014-10-06 21:47:56 -04:00
require 'chef/provider/lwrp_base'
class Chef
class Provider
class MysqlClient
class Rhel < Chef::Provider::MysqlClient
def packages
%w(mysql mysql-devel)
end
end
end
end
end