2013-08-05 13:20:54 -04:00
|
|
|
Puppet::Type.type(:neutron_metadata_agent_config).provide(
|
2012-10-09 14:58:58 +02:00
|
|
|
:ini_setting,
|
2015-08-06 13:06:07 +02:00
|
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
2012-10-09 14:58:58 +02:00
|
|
|
) do
|
|
|
|
|
2016-04-06 13:01:17 -06:00
|
|
|
def self.file_path
|
2013-08-05 13:20:54 -04:00
|
|
|
'/etc/neutron/metadata_agent.ini'
|
2012-10-09 14:58:58 +02:00
|
|
|
end
|
|
|
|
|
2016-04-06 13:01:17 -06:00
|
|
|
# added for backwards compatibility with older versions of inifile
|
|
|
|
def file_path
|
|
|
|
self.class.file_path
|
|
|
|
end
|
|
|
|
|
2012-10-09 14:58:58 +02:00
|
|
|
end
|