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

14 lines
245 B
Ruby
Raw Normal View History

2014-10-06 18:47:56 -07: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