Skip to content

Commit

Permalink
Set can_set_mount_point to False by default
Browse files Browse the repository at this point in the history
Change-Id: I518bfbeee709f5304a1c6b2b9ddcfe9655881a66
Closes-Bug: #1255136
  • Loading branch information
niuzhenguo committed Nov 29, 2013
1 parent 7711a78 commit d32e237
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion openstack_dashboard/local/local_settings.py.example
Expand Up @@ -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,
}

Expand Down

0 comments on commit d32e237

Please sign in to comment.