80f2b44bcb
The neutron fwaas project is being retired [1], this deprecates all related code so it can be removed next release. [1] https://review.opendev.org/#/c/735829/ Depends-On: https://review.opendev.org/#/c/736722/ Change-Id: I58b79942dc49d27e3ef6a35f3970fc392849652e
17 lines
352 B
Ruby
17 lines
352 B
Ruby
# DEPRECATED!
|
|
Puppet::Type.type(:neutron_fwaas_service_config).provide(
|
|
:ini_setting,
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
|
) do
|
|
|
|
def self.file_path
|
|
'/etc/neutron/fwaas_driver.ini'
|
|
end
|
|
|
|
# added for backwards compatibility with older versions of inifile
|
|
def file_path
|
|
self.class.file_path
|
|
end
|
|
|
|
end
|