Add missing post-config and nova-common

Required for decoupling usage of nova and
nova api classes in separate catalog runs

Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
This commit is contained in:
Bogdan Dobrelya 2015-07-30 11:50:28 +02:00
parent 962ab6f58e
commit ec4515efd3
2 changed files with 19 additions and 0 deletions

View File

@ -2,3 +2,10 @@ class { 'nova::api':
ensure_package => 'absent',
enabled => false,
}
include nova::params
package { 'nova-common':
name => $nova::params::common_package_name,
ensure => 'absent',
}

View File

@ -31,6 +31,18 @@ $validation_options = $resource['input']['validation_options'
$workers = $resource['input']['workers']['value']
$conductor_workers = $resource['input']['conductor_workers']['value']
exec { 'post-nova_config':
command => '/bin/echo "Nova config has changed"',
refreshonly => true,
}
include nova::params
package { 'nova-common':
name => $nova::params::common_package_name,
ensure => $ensure_package,
}
class { 'nova::api':
enabled => true,
manage_service => true,