]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/nova/manifests/client.pp
fix UTF-8 character
[dsa-puppet.git] / 3rdparty / modules / nova / manifests / client.pp
1 # == Class nova::client
2 #
3 # installs nova client
4 #
5 # === Parameters:
6 #
7 # [*ensure*]
8 #   (optional) The state for the nova client package
9 #   Defaults to 'present'
10 #
11 class nova::client(
12   $ensure = 'present'
13 ) {
14
15   package { 'python-novaclient':
16     ensure => $ensure,
17     tag    => ['openstack', 'nova'],
18   }
19
20 }