Puppet Class: tripleo::profile::base::nova::migration
- Defined in:
- manifests/profile/base/nova/migration.pp
Overview
26 27 28 29 30 31 32 33 34 35 |
# File 'manifests/profile/base/nova/migration.pp', line 26
class tripleo::profile::base::nova::migration (
$step = Integer(lookup('step')),
) {
if $step >= 3 {
package { 'openstack-nova-migration':
ensure => present,
tag => ['openstack', 'nova-package'],
}
}
}
|