mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-08 22:14:50 +00:00
14 lines
225 B
Ruby
14 lines
225 B
Ruby
require 'chef/provider/lwrp_base'
|
|
|
|
class Chef
|
|
class Provider
|
|
class MysqlClient
|
|
class FreeBSD < Chef::Provider::MysqlClient
|
|
def packages
|
|
%w(mysql55-client)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|