]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/keystone/manifests/params.pp
Revert "add stackforge/keystone to 3rdparty"
[dsa-puppet.git] / 3rdparty / modules / keystone / manifests / params.pp
diff --git a/3rdparty/modules/keystone/manifests/params.pp b/3rdparty/modules/keystone/manifests/params.pp
deleted file mode 100644 (file)
index f3f0f4d..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# This class contains the platform differences for keystone
-#
-class keystone::params {
-  $client_package_name = 'python-keystone'
-
-  case $::osfamily {
-    'Debian': {
-      $package_name                 = 'keystone'
-      $service_name                 = 'keystone'
-      $keystone_wsgi_script_path    = '/usr/lib/cgi-bin/keystone'
-      $python_memcache_package_name = 'python-memcache'
-      case $::operatingsystem {
-        'Debian': {
-          $service_provider            = undef
-          $keystone_wsgi_script_source = '/usr/share/keystone/wsgi.py'
-        }
-        default: {
-          # NOTE: Ubuntu does not currently provide the keystone wsgi script in the
-          # keystone packages.  When Ubuntu does provide the script, change this
-          # to use the correct path (which I'm assuming will be the same as Debian).
-          $service_provider            = 'upstart'
-          $keystone_wsgi_script_source = 'puppet:///modules/keystone/httpd/keystone.py'
-        }
-      }
-    }
-    'RedHat': {
-      $package_name                 = 'openstack-keystone'
-      $service_name                 = 'openstack-keystone'
-      $keystone_wsgi_script_path    = '/var/www/cgi-bin/keystone'
-      $python_memcache_package_name = 'python-memcached'
-      $service_provider             = undef
-      $keystone_wsgi_script_source  = '/usr/share/keystone/keystone.wsgi'
-    }
-  }
-}