puppet-neutron/lib/puppet/provider/eswitchd_config/ini_setting.rb
Hamdy Khader e4a0b96628 Add support for neutron-mlnx-agent
Configure mlnx neutron agent and start the required services.

Change-Id: I32fbaac96ad0476b5cf1f9f3b93e1cc8119fc59e
2019-07-14 11:33:27 +00:00

16 lines
334 B
Ruby

Puppet::Type.type(:eswitchd_config).provide(
:ini_setting,
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
) do
def self.file_path
'/etc/neutron/plugins/ml2/eswitchd.conf'
end
# added for backwards compatibility with older versions of inifile
def file_path
self.class.file_path
end
end