
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>
16 lines
336 B
Ruby
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
|