cce7c12919
Implements: blueprint tripleo-routed-networks-deployment Depends-On: I7841d59c3590106dd8ac7e625a9db7b47674fe29 Change-Id: Ibaf539230b5b500d5b80d5b486a30f60e7a6dc4a
16 lines
357 B
Ruby
16 lines
357 B
Ruby
Puppet::Type.type(:ironic_neutron_agent_config).provide(
|
|
:ini_setting,
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
|
) do
|
|
|
|
def self.file_path
|
|
'/etc/neutron/plugins/ml2/ironic_neutron_agent.ini'
|
|
end
|
|
|
|
# added for backwards compatibility with older versions of inifile
|
|
def file_path
|
|
self.class.file_path
|
|
end
|
|
|
|
end
|