From de0d04839641ad71abfa6e1c0f0e5c05435be82e Mon Sep 17 00:00:00 2001 From: nitishkrishna Date: Mon, 1 Aug 2016 14:31:49 -0700 Subject: [PATCH] Partial-Bug: #1605827 - Stop spinning neutron-server service The Openstack role doesn't need neutron-server package. It needs only neutron-common package to do neutron db sync If we install neutron common package instead of neutron server, the neutron-server service doesn't run during openstack role provision This speeds up Provision by preventing the respawns of that service Change-Id: If151cda19f67890e0d91c5a477460934d0e0860b --- .../modules/contrail/manifests/profile/openstack/neutron.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrail/environment/modules/contrail/manifests/profile/openstack/neutron.pp b/contrail/environment/modules/contrail/manifests/profile/openstack/neutron.pp index 4584cf81..eebd2b28 100644 --- a/contrail/environment/modules/contrail/manifests/profile/openstack/neutron.pp +++ b/contrail/environment/modules/contrail/manifests/profile/openstack/neutron.pp @@ -13,7 +13,7 @@ allowed_hosts => $allowed_hosts, } if ($::operatingsystem == 'Ubuntu') { - package { 'neutron-server': ensure => present } + package { 'neutron-common': ensure => present } } if ($::operatingsystem == 'Centos' or $::operatingsystem == 'Fedora') { package { 'openstack-neutron': ensure => present }