try again, with puppetforge modules, correctly included now
[mirror/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 }