hapi-fhir/vagrant/chef/cookbooks/mysql/libraries/provider_mysql_client_ubunt...

14 lines
245 B
Ruby

require 'chef/provider/lwrp_base'
class Chef
class Provider
class MysqlClient
class Ubuntu < Chef::Provider::MysqlClient
def packages
%w(mysql-client-5.5 libmysqlclient-dev)
end
end
end
end
end