fix default volume typ name
diff --git a/cinder/files/kilo/cinder.conf.controller.Debian b/cinder/files/kilo/cinder.conf.controller.Debian
index 5f616e4..5ba37f3 100644
--- a/cinder/files/kilo/cinder.conf.controller.Debian
+++ b/cinder/files/kilo/cinder.conf.controller.Debian
@@ -30,7 +30,7 @@
glance_api_version=2
volume_backend_name=DEFAULT
-default_volume_type={% for type in controller.get('types', []) %}{% if loop.first %}{{ type.backend }}{% endif %}{% endfor %}
+default_volume_type={% for type in controller.get('types', []) %}{% if loop.first %}{{ type.name }}{% endif %}{% endfor %}
#RPC response timeout recommended by Hitachi
rpc_response_timeout=3600
diff --git a/cinder/files/kilo/cinder.conf.volume.Debian b/cinder/files/kilo/cinder.conf.volume.Debian
index cd7dd93..2f58da3 100644
--- a/cinder/files/kilo/cinder.conf.volume.Debian
+++ b/cinder/files/kilo/cinder.conf.volume.Debian
@@ -30,7 +30,7 @@
glance_api_version=2
volume_backend_name=DEFAULT
-default_volume_type={% for type in volume.get('types', []) %}{% if loop.first %}{{ type.backend }}{% endif %}{% endfor %}
+default_volume_type={% for type in volume.get('types', []) %}{% if loop.first %}{{ type.name }}{% endif %}{% endfor %}
#RPC response timeout recommended by Hitachi
rpc_response_timeout=3600
diff --git a/cinder/files/liberty/cinder.conf.controller.Debian b/cinder/files/liberty/cinder.conf.controller.Debian
index e206f03..d9de653 100644
--- a/cinder/files/liberty/cinder.conf.controller.Debian
+++ b/cinder/files/liberty/cinder.conf.controller.Debian
@@ -30,7 +30,7 @@
glance_api_version=2
volume_backend_name=DEFAULT
-default_volume_type={% for type in controller.get('types', []) %}{% if loop.first %}{{ type.backend }}{% endif %}{% endfor %}
+default_volume_type={% for type in controller.get('types', []) %}{% if loop.first %}{{ type.name }}{% endif %}{% endfor %}
#RPC response timeout recommended by Hitachi
rpc_response_timeout=3600
diff --git a/cinder/files/liberty/cinder.conf.volume.Debian b/cinder/files/liberty/cinder.conf.volume.Debian
index ebc1c3f..ffd21a6 100644
--- a/cinder/files/liberty/cinder.conf.volume.Debian
+++ b/cinder/files/liberty/cinder.conf.volume.Debian
@@ -30,7 +30,7 @@
glance_api_version=2
volume_backend_name=DEFAULT
-default_volume_type={% for type in volume.get('types', []) %}{% if loop.first %}{{ type.backend }}{% endif %}{% endfor %}
+default_volume_type={% for type in volume.get('types', []) %}{% if loop.first %}{{ type.name }}{% endif %}{% endfor %}
#RPC response timeout recommended by Hitachi
rpc_response_timeout=3600