]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/openstacklib/manifests/openstackclient.pp
try with modules from master
[dsa-puppet.git] / 3rdparty / modules / openstacklib / manifests / openstackclient.pp
diff --git a/3rdparty/modules/openstacklib/manifests/openstackclient.pp b/3rdparty/modules/openstacklib/manifests/openstackclient.pp
new file mode 100644 (file)
index 0000000..096741c
--- /dev/null
@@ -0,0 +1,18 @@
+# == Class: openstacklib::openstackclient
+#
+# Installs the openstackclient
+#
+# == Parameters
+#
+#  [*package_ensure*]
+#    Ensure state of the openstackclient package.
+#    Optional. Defaults to 'present'.
+#
+class openstacklib::openstackclient(
+  $package_ensure = 'present',
+){
+  package { 'python-openstackclient':
+    ensure => $package_ensure,
+    tag    => 'openstack',
+  }
+}