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:
parent
962ab6f58e
commit
ec4515efd3
@ -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',
|
||||
}
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user