Xicheng Chang 70360bca6a Changed ansible code structure.
Moved roles to the parent directory
so that different adapters don't have
duplicated roles in their respective
paths.

Change-Id: Ia71c473b33fed94276d4d0b4764b2f4ab2e988e0
2015-05-21 20:30:15 -07:00

31 lines
847 B
YAML

---
- name: install dashboard packages
apt: name={{ item }} state=present force=yes
with_items:
- apache2
- memcached
- libapache2-mod-wsgi
- openstack-dashboard
- name: remove ubuntu theme
apt: name=openstack-dashboard-ubuntu-theme
state=absent
## horizon configuration is already enabled in apache2/conf-enabled
## by openstack-dashboard package deploy script.
#- name: update dashboard conf
# template: src=openstack-dashboard.conf
# dest=/etc/apache2/sites-available/openstack-dashboard.conf
# backup=yes
- name: update horizon settings
template: src=local_settings.py
dest=/etc/openstack-dashboard/local_settings.py
backup=yes
- name: restart apache2
service: name=apache2 state=restarted
- name: restart memcached
service: name=memcached state=restarted