aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/dashboard/tasks/main.yml
diff options
context:
space:
mode:
authorJustin chi <chigang@huawei.com>2015-09-23 16:46:54 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-09-23 16:46:54 +0000
commitd16d74fbbe738f0d15366dedf9f5e042505ee1e8 (patch)
tree96f997851c91df8ced27a5bc4596287fe3d37b5f /deploy/adapters/ansible/roles/dashboard/tasks/main.yml
parent8e3005507e0318ec4cf9a1c158a5749c1155263e (diff)
parent5dcc94014a588e6f7bb5cb605b164609ac0b50c7 (diff)
Merge "bug fix: using external_vip as linked dashboard ip"
Diffstat (limited to 'deploy/adapters/ansible/roles/dashboard/tasks/main.yml')
-rw-r--r--deploy/adapters/ansible/roles/dashboard/tasks/main.yml13
1 files changed, 10 insertions, 3 deletions
diff --git a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml
index 9206fda4..dd5c6fd0 100644
--- a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml
+++ b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml
@@ -1,13 +1,20 @@
---
- include_vars: "{{ ansible_os_family }}.yml"
+- name: install http packages
+ action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
+ with_items: http_packages
+
+- name: set http config
+ lineinfile: dest={{ http_config_file }} regexp='^Listen 80' line='Listen {{ internal_ip }}:80'
+
+- name: restart http services
+ service: name={{ http_service }} state=restarted enabled=yes
+
- name: install dashboard packages
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"