From ef5c2bfdc0cd63280b78380688ccba44df302b7b Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 19 Jan 2024 23:57:19 +0900 Subject: [PATCH] Remove workaround for bz 2259076 ... since the issue is fixed in the current TaaS package in RDO. Change-Id: I30ff8f2706e674f66dea5b552dbbe1c9367e0fd1 --- manifests/neutron.pp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/manifests/neutron.pp b/manifests/neutron.pp index 82e3a8d11..41f586436 100644 --- a/manifests/neutron.pp +++ b/manifests/neutron.pp @@ -427,17 +427,6 @@ class openstack_integration::neutron ( if $taas_enabled { class { 'neutron::agents::taas': } class { 'neutron::services::taas': } - - if $facts['os']['family'] == 'RedHat' { - # NOTE(tkajinam): Remove this once bz 2259076 is fixed - # https://bugzilla.redhat.com/show_bug.cgi?id=2259076 - Exec { 'fix-taas-synlink': - command => 'mv /usr/share/neutron/server/taas_plugin.ini /usr/share/neutron/server/taas_plugin.conf', - unless => 'test -e /usr/share/neutron/server/taas_plugin.conf', - path => ['/bin', '/usr/bin'], - } - Anchor['neutron::config::begin'] -> Anchor['neutron::config::end'] - } } }