puppet-nova/manifests/client.pp
Matt Fischer d53282fcce Only tag packages with openstack tag
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
2015-02-04 12:56:01 -07:00

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