Blob Blame History Raw
From 9ce88984dace7db4a048d39f9080984bf9834a5e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?P=C3=A1draig=20Brady?= <P@draigBrady.com>
Date: Wed, 9 Apr 2014 10:31:27 +0100
Subject: [PATCH] avoid unsupported storage drivers

---
 etc/glance-api.conf      | 2 --
 etc/glance-cache.conf    | 2 --
 glance/store/__init__.py | 2 --
 3 files changed, 6 deletions(-)

diff --git a/etc/glance-api.conf b/etc/glance-api.conf
index 8b4bf66..c53be76 100644
--- a/etc/glance-api.conf
+++ b/etc/glance-api.conf
@@ -17,10 +17,8 @@ default_store = file
 #      glance.store.rbd.Store,
 #      glance.store.s3.Store,
 #      glance.store.swift.Store,
-#      glance.store.sheepdog.Store,
 #      glance.store.cinder.Store,
 #      glance.store.gridfs.Store,
-#      glance.store.vmware_datastore.Store,
 #known_stores = glance.store.filesystem.Store,
 #               glance.store.http.Store
 
diff --git a/etc/glance-cache.conf b/etc/glance-cache.conf
index 0246b67..04e5623 100644
--- a/etc/glance-cache.conf
+++ b/etc/glance-cache.conf
@@ -44,9 +44,7 @@ registry_port = 9191
 #                glance.store.rbd.Store,
 #                glance.store.s3.Store,
 #                glance.store.swift.Store,
-#                glance.store.sheepdog.Store,
 #                glance.store.cinder.Store,
-#                glance.store.vmware_datastore.Store,
 
 # ============ Filesystem Store Options ========================
 
diff --git a/glance/store/__init__.py b/glance/store/__init__.py
index aa11487..3093dc4 100644
--- a/glance/store/__init__.py
+++ b/glance/store/__init__.py
@@ -70,10 +70,8 @@ _ALL_STORES = [
     'glance.store.rbd.Store',
     'glance.store.s3.Store',
     'glance.store.swift.Store',
-    'glance.store.sheepdog.Store',
     'glance.store.cinder.Store',
     'glance.store.gridfs.Store',
-    'glance.store.vmware_datastore.Store'
 ]
 
 RESTRICTED_URI_SCHEMAS = frozenset(['file', 'filesystem', 'swift+config'])