]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/keystone/manifests/python.pp
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / keystone / manifests / python.pp
diff --git a/3rdparty/modules/keystone/manifests/python.pp b/3rdparty/modules/keystone/manifests/python.pp
new file mode 100644 (file)
index 0000000..858fd65
--- /dev/null
@@ -0,0 +1,15 @@
+#
+# installs client python libraries for keystone
+#
+#
+class keystone::python (
+  $client_package_name = $keystone::params::client_package_name,
+  $ensure = 'present'
+) inherits keystone::params {
+
+  package { 'python-keystone' :
+    ensure => $ensure,
+    name   => $client_package_name,
+  }
+
+}