cd4ab63101
Implements: blueprint networking-sfc-support Co-Authored-By: Tim Rozet <trozet@redhat.com> Change-Id: I09ce12298caee6fb2194240f2e19b4771ab797b0
16 lines
358 B
Ruby
16 lines
358 B
Ruby
Puppet::Type.type(:neutron_sfc_service_config).provide(
|
|
:openstackconfig,
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ruby)
|
|
) do
|
|
|
|
def self.file_path
|
|
'/etc/neutron/conf.d/neutron-server/networking-sfc.conf'
|
|
end
|
|
|
|
# added for backwards compatibility with older versions of inifile
|
|
def file_path
|
|
self.class.file_path
|
|
end
|
|
|
|
end
|