puppet-neutron/lib/puppet/provider/neutron_lbaas_agent_config/ini_setting.rb

16 lines
335 B
Ruby

Puppet::Type.type(:neutron_lbaas_agent_config).provide(
:ini_setting,
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
) do
def self.file_path
'/etc/neutron/lbaas_agent.ini'
end
# added for backwards compatibility with older versions of inifile
def file_path
self.class.file_path
end
end