Files
puppet-neutron/lib/puppet/provider/neutron_agent_vpp/ini_settings.rb
Feng Pan 8f2eaaeda9 Add support for VPP plugin
Introduce puppet classes to configure networking-vpp ML2
driver and agent.

Implements: blueprint fdio-integration-tripleo

Change-Id: Idc2fdb37eba9ada97492ade29d7337fd5a6ba9f2
Signed-off-by: Feng Pan <fpan@redhat.com>
2016-12-16 07:53:28 -05:00

16 lines
336 B
Ruby

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