]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/openstacklib/manifests/openstackclient.pp
try with modules from master
[dsa-puppet.git] / 3rdparty / modules / openstacklib / manifests / openstackclient.pp
1 # == Class: openstacklib::openstackclient
2 #
3 # Installs the openstackclient
4 #
5 # == Parameters
6 #
7 #  [*package_ensure*]
8 #    Ensure state of the openstackclient package.
9 #    Optional. Defaults to 'present'.
10 #
11 class openstacklib::openstackclient(
12   $package_ensure = 'present',
13 ){
14   package { 'python-openstackclient':
15     ensure => $package_ensure,
16     tag    => 'openstack',
17   }
18 }