Skip to content

Commit

Permalink
Partial-Bug: #1605827 - Stop spinning neutron-server service
Browse files Browse the repository at this point in the history
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
  • Loading branch information
nitishkrishna committed Aug 1, 2016
1 parent 6fad98a commit de0d048
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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 }
Expand Down

0 comments on commit de0d048

Please sign in to comment.