blob: 595904ce266ee68671d12be396b3c0e7ffa5c32d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|