]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/cinder/manifests/client.pp
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / cinder / manifests / client.pp
diff --git a/3rdparty/modules/cinder/manifests/client.pp b/3rdparty/modules/cinder/manifests/client.pp
new file mode 100644 (file)
index 0000000..1b6ad82
--- /dev/null
@@ -0,0 +1,20 @@
+# == Class: cinder::client
+#
+# Installs Cinder python client.
+#
+# === Parameters
+#
+# [*ensure*]
+#   Ensure state for package. Defaults to 'present'.
+#
+class cinder::client(
+  $package_ensure = 'present'
+) {
+
+  include cinder::params
+
+  package { 'python-cinderclient':
+    ensure => $package_ensure,
+    name   => $::cinder::params::client_package,
+  }
+}