]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/nova/manifests/client.pp
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / nova / manifests / client.pp
diff --git a/3rdparty/modules/nova/manifests/client.pp b/3rdparty/modules/nova/manifests/client.pp
new file mode 100644 (file)
index 0000000..35748c0
--- /dev/null
@@ -0,0 +1,20 @@
+# == Class nova::client
+#
+# installs nova client
+#
+# === Parameters:
+#
+# [*ensure*]
+#   (optional) The state for the nova client package
+#   Defaults to 'present'
+#
+class nova::client(
+  $ensure = 'present'
+) {
+
+  package { 'python-novaclient':
+    ensure => $ensure,
+    tag    => ['openstack', 'nova'],
+  }
+
+}