mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-09 22:44:52 +00:00
14 lines
245 B
Ruby
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
|