diff options
author | QiLiang <liangqi1@huawei.com> | 2016-10-20 01:52:15 +0800 |
---|---|---|
committer | QiLiang <liangqi1@huawei.com> | 2016-10-21 01:42:09 +0800 |
commit | 065813ecbe8b4860da4281b6d67104798e3a8d43 (patch) | |
tree | 674bca0404c41010838cec4b996416d3c785177c /deploy/adapters/ansible/roles/dashboard/tasks/main.yml | |
parent | a34dce641ee91d9453321be7e14351e4afd1e1de (diff) |
Make openstack dashboard theme configurable
Use flag ENABLE_UBUNTU_THEME to configure enable or disable ubuntu
dashboard theme.
Set default to use ubuntu theme.
JIRA: -
Change-Id: I454c69b0290084c244979bb86c733a03721481cb
Signed-off-by: QiLiang <liangqi1@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/dashboard/tasks/main.yml')
-rw-r--r-- | deploy/adapters/ansible/roles/dashboard/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml index da6990c4..229e3cfe 100644 --- a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml +++ b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml @@ -28,7 +28,7 @@ - name: remove ubuntu theme action: "{{ ansible_pkg_mgr }} name=openstack-dashboard-ubuntu-theme state=absent" - when: ansible_os_family == 'Debian' + when: ansible_os_family == 'Debian' and not enable_ubuntu_theme notify: - restart dashboard services |