2c1a49578c
Use python3-novaclient instead of python-novaclient under Debian. Change-Id: I01f366712e4e0449b160e8704f9ac4030512347d
24 lines
423 B
Puppet
24 lines
423 B
Puppet
# == Class nova::client
|
|
#
|
|
# installs nova client
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*ensure*]
|
|
# (optional) The state for the nova client package
|
|
# Defaults to 'present'
|
|
#
|
|
class nova::client(
|
|
$ensure = 'present'
|
|
) {
|
|
include ::nova::deps
|
|
include ::nova::params
|
|
|
|
package { 'python-novaclient':
|
|
ensure => $ensure,
|
|
name => $::nova::params::client_package,
|
|
tag => ['openstack', 'nova-support-package'],
|
|
}
|
|
|
|
}
|