Set can_set_mount_point to False by default

Change-Id: I518bfbeee709f5304a1c6b2b9ddcfe9655881a66
Closes-Bug: #1255136
This commit is contained in:
Zhenguo Niu
2013-11-28 11:04:58 +08:00
committed by niu-zglinux
parent 7711a78ac4
commit d32e2375de

View File

@@ -149,8 +149,12 @@ OPENSTACK_KEYSTONE_BACKEND = {
'can_edit_role': True
}
# The Xen Hypervisor has the ability to set the mount point for volumes
# attached to instances (other Hypervisors currently do not). Setting
# can_set_mount_point to True will add the option to set the mount point
# from the UI.
OPENSTACK_HYPERVISOR_FEATURES = {
'can_set_mount_point': True,
'can_set_mount_point': False,
'can_set_password': True,
}