From 412b07f4f621dfc4881fbd2105ab82d7dd7a98be Mon Sep 17 00:00:00 2001 From: Feng Pan Date: Mon, 26 Sep 2016 14:39:23 -0400 Subject: VPP version update - Update VPP version to latest on 16.09 branch - Change networking-vpp repo to point to openstack. - Update VPP python API rpm location - Configure etcd for networking-vpp ML2 plugin opnfv-tht-pr: 85 JIRA: APEX-283 Change-Id: I4e69de3c51b1f4221995cc8568cdfa18aacbc55c Signed-off-by: Feng Pan --- .../lib/puppet/provider/neutron_agent_vpp/ini_setting.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 build/puppet-neutron/lib/puppet/provider/neutron_agent_vpp/ini_setting.rb (limited to 'build/puppet-neutron/lib/puppet/provider/neutron_agent_vpp') diff --git a/build/puppet-neutron/lib/puppet/provider/neutron_agent_vpp/ini_setting.rb b/build/puppet-neutron/lib/puppet/provider/neutron_agent_vpp/ini_setting.rb new file mode 100644 index 00000000..595904ce --- /dev/null +++ b/build/puppet-neutron/lib/puppet/provider/neutron_agent_vpp/ini_setting.rb @@ -0,0 +1,15 @@ +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 \ No newline at end of file -- cgit 1.2.3-korg