diff options
author | baigk <baiguoku@huawei.com> | 2015-09-22 22:57:22 +0800 |
---|---|---|
committer | baigk <baiguoku@huawei.com> | 2015-09-22 23:35:03 +0800 |
commit | a07334031b4b4b055a19c971d0cc3164f95d5a0b (patch) | |
tree | 58620d25e2e484c0c3f0b5270df10096dba7c509 /deploy/adapters/ansible/roles/dashboard/tasks | |
parent | a2ea6270efc928dfb062cb32065162df4396b6a4 (diff) |
add public vip for external access
JIRA: COMPASS-69
Change-Id: I7c2b6a026d2fb002174aa5f0a619d9fe6982e528
Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/dashboard/tasks')
-rw-r--r-- | deploy/adapters/ansible/roles/dashboard/tasks/main.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml index 2cad1174..9206fda4 100644 --- a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml +++ b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml @@ -5,6 +5,9 @@ action: "{{ ansible_pkg_mgr }} name={{ item }} state=present" with_items: packages | union(packages_noarch) +- name: set apache2 config + template: src=ports.j2 dest=/etc/apache2/ports.conf backup=yes + - name: remove ubuntu theme action: "{{ ansible_pkg_mgr }} name=openstack-dashboard-ubuntu-theme state=absent" |