Xicheng Chang 410a9c480d Fix hardcode for ubuntu apt-key
patch2: make ansible code follow lint.
patch2: some of the 'shell' command will be replaced
with ansible built-in 'script' in a separate CL.
Change-Id: I010fbf89d7393c2ba1bee06dca36196fe5cc7006
2015-04-20 10:54:07 -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