Remove a bunch of 3rdparty modules that seem unused
[mirror/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
deleted file mode 100644 (file)
index 32adc63..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-# == Class keystone::python
-#
-# installs client python libraries for keystone
-#
-# === Parameters:
-#
-# [*client_package_name*]
-#   (optional) The name of python keystone client package
-#   Defaults to $keystone::params::client_package_name
-#
-# [*ensure*]
-#   (optional) The state for the keystone client package
-#   Defaults to 'present'
-#
-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,
-  }
-
-}