mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-10 15:05:05 +00:00
14 lines
225 B
Ruby
14 lines
225 B
Ruby
require 'chef/provider/lwrp_base'
|
|
|
|
class Chef
|
|
class Provider
|
|
class MysqlClient
|
|
class Rhel < Chef::Provider::MysqlClient
|
|
def packages
|
|
%w(mysql mysql-devel)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|