e4a0b96628
Configure mlnx neutron agent and start the required services. Change-Id: I32fbaac96ad0476b5cf1f9f3b93e1cc8119fc59e
16 lines
334 B
Ruby
16 lines
334 B
Ruby
Puppet::Type.type(:eswitchd_config).provide(
|
|
:ini_setting,
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
|
) do
|
|
|
|
def self.file_path
|
|
'/etc/neutron/plugins/ml2/eswitchd.conf'
|
|
end
|
|
|
|
# added for backwards compatibility with older versions of inifile
|
|
def file_path
|
|
self.class.file_path
|
|
end
|
|
|
|
end
|