Fix docs path in common rpm spec file
[apex.git] / build / puppet-neutron / lib / puppet / provider / neutron_agent_vpp / ini_setting.rb
1 Puppet::Type.type(:neutron_agent_vpp).provide(
2   :ini_setting,
3   :parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
4 ) do
5
6   def self.file_path
7     '/etc/neutron/plugins/ml2/vpp_agent.ini'
8   end
9
10   # added for backwards compatibility with older versions of inifile
11   def file_path
12     self.class.file_path
13   end
14
15 end