Remove _40_router.py.example file

The openstack_dashboard/local/enabled path uses the example
for enabling/disabling the router dashboard.
Given the "router" dashboard is no longer present in master,
it makes sense to rename this example to an existing dashboard.

Change-Id: Ib2fe47fea796adb50f99927a8c942a7838543c24
Closes-Bug: #1487140
This commit is contained in:
Abishek Subramanian 2015-08-20 13:07:40 -04:00
parent 41c6c7b735
commit f55b2e5b24
2 changed files with 4 additions and 4 deletions

View File

@ -1395,11 +1395,11 @@ If set to ``True``, this dashboard will be set as the default dashboard.
Examples
--------
To disable the Router dashboard locally, create a file
``openstack_dashboard/local/enabled/_40_router.py`` with the following
To disable a dashboard locally, create a file
``openstack_dashboard/local/enabled/_40_dashboard-name.py`` with the following
content::
DASHBOARD = 'router'
DASHBOARD = '<dashboard-name>'
DISABLED = True
To add a Tuskar-UI (Infrastructure) dashboard, you have to install it, and then

View File

@ -1,5 +1,5 @@
# The name of the dashboard to be added to HORIZON['dashboards']. Required.
DASHBOARD = 'router'
DASHBOARD = 'settings'
# If set to True, this dashboard will not be added to the settings.
DISABLED = False