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

14 lines
245 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 Ubuntu < Chef::Provider::MysqlClient
def packages
%w(mysql-client-5.5 libmysqlclient-dev)
end
end
end
end
end