[compute-system-admin]Fix the wrong variable in the inject password section

Now the Dashboard disable the password fields by editing the dashboard's
local_settings file using variable "OPENSTACK_HYPERVISOR_FEATURE",
actually the variable is "OPENSTACK_HYPERVISOR_FEATURES"

This patch fix it

Change-Id: I84bc2aefebf90ec2f505c37332cac5cd4b1d258f
This commit is contained in:
zhu.rong 2015-07-25 07:37:07 +08:00
parent 03b3f8e806
commit 1185c9ab34
2 changed files with 2 additions and 2 deletions

View File

@ -476,7 +476,7 @@ Linux Enterprise Server, it is
.. code:: ini
OPENSTACK_HYPERVISOR_FEATURE = {
OPENSTACK_HYPERVISOR_FEATURES = {
...
'can_set_password': False,
}

View File

@ -109,7 +109,7 @@
On Ubuntu and Debian, it is <filename>/etc/openstack-dashboard/local_settings.py</filename>.
On openSUSE and SUSE Linux Enterprise Server, it is
<filename>/srv/www/openstack-dashboard/openstack_dashboard/local/local_settings.py</filename></para>
<programlisting language="ini">OPENSTACK_HYPERVISOR_FEATURE = {
<programlisting language="ini">OPENSTACK_HYPERVISOR_FEATURES = {
...
'can_set_password': False,
}</programlisting>