puppet-nova/manifests/client.pp
Thomas Goirand 2c1a49578c Debian is using Python 3 for the client
Use python3-novaclient instead of python-novaclient under Debian.

Change-Id: I01f366712e4e0449b160e8704f9ac4030512347d
2018-05-08 16:39:11 +02:00

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'],
}
}