]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/glance/manifests/client.pp
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / glance / manifests / client.pp
diff --git a/3rdparty/modules/glance/manifests/client.pp b/3rdparty/modules/glance/manifests/client.pp
new file mode 100644 (file)
index 0000000..c2ae060
--- /dev/null
@@ -0,0 +1,19 @@
+#
+# Installs the glance python library.
+#
+# == parameters
+#  * ensure - ensure state for pachage.
+#
+class glance::client (
+  $ensure = 'present'
+) {
+
+  include glance::params
+
+  package { 'python-glanceclient':
+    ensure => $ensure,
+    name   => $::glance::params::client_package_name,
+    tag    => ['openstack'],
+  }
+
+}