puppet-cinder/lib/puppet/provider/cinder_config/openstackconfig.rb
Takashi Kajinami 870ff62655 Add support for MultiStrOpt
This replaces the provider implementation of cinder_config type so that
MultiStrOpt, which is used by several options like
 - oslo_messaging_notifications/driver
 - oslo_policy/policy_dirs
is handled correctly.

Change-Id: If052cde4da84970df4af657136060532ccb422f7
2021-05-05 10:45:22 +09:00

11 lines
197 B
Ruby

Puppet::Type.type(:cinder_config).provide(
:openstackconfig,
:parent => Puppet::Type.type(:openstack_config).provider(:ruby)
) do
def self.file_path
'/etc/cinder/cinder.conf'
end
end