The current code tries to restart apache for every change to
/etc/nova/nova.conf even on compute nodes that do not have apache
installed. This changeset splits out the apache service resource into a
separate recipe that (unlike nova-common) is not included by the compute
recipe.
Conflicts: recipes/placement_api.rb
Added version bump.
Change-Id: I87dda61dfabec460fe042b4cee21277382dd9487
(cherry picked from commit 5747451dcb)
22 lines
669 B
Ruby
22 lines
669 B
Ruby
name 'openstack-compute'
|
|
maintainer 'openstack-chef'
|
|
maintainer_email 'openstack-discuss@lists.openstack.org'
|
|
issues_url 'https://launchpad.net/openstack-chef'
|
|
source_url 'https://opendev.org/openstack/cookbook-openstack-compute'
|
|
license 'Apache-2.0'
|
|
description 'The OpenStack Compute service Nova.'
|
|
version '19.2.0'
|
|
|
|
chef_version '>= 15.0'
|
|
|
|
%w(ubuntu redhat centos).each do |os|
|
|
supports os
|
|
end
|
|
|
|
depends 'apache2', '~> 8.0'
|
|
depends 'openstack-common', '>= 19.0.0'
|
|
depends 'openstack-identity', '>= 19.0.0'
|
|
depends 'openstack-image', '>= 19.0.0'
|
|
depends 'openstack-network', '>= 19.0.0'
|
|
depends 'openstackclient'
|