Puppet Class: nova::client
- Defined in:
- manifests/client.pp
Overview
Class nova::client
installs nova client
Parameters:
- ensure
-
(optional) The state for the nova client package Defaults to ‘present’
11 12 13 14 15 16 17 18 19 20 |
# File 'manifests/client.pp', line 11
class nova::client(
$ensure = 'present'
) {
package { 'python-novaclient':
ensure => $ensure,
tag => ['openstack', 'nova'],
}
}
|