d53282fcce
We don't need the nova tag since Puppet will auto-tag the nova packages with the appropriate service name. Change-Id: Iab3a42dc915b7343eb59887e1a5e769a9ff522cd Closes-Bug: #1391209
21 lines
304 B
Puppet
21 lines
304 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'
|
|
) {
|
|
|
|
package { 'python-novaclient':
|
|
ensure => $ensure,
|
|
tag => ['openstack'],
|
|
}
|
|
|
|
}
|