diff options
author | baigk <baigk@baigk.local> | 2015-12-09 16:48:58 +0800 |
---|---|---|
committer | baigk <baigk@baigk.local> | 2015-12-09 16:48:58 +0800 |
commit | 16e28bd393d7e8bfac03db308a283f93b3a9368b (patch) | |
tree | eaec361401bbea7d2d1803b812f6c080e17ab99c /deploy/adapters/ansible/roles/dashboard/tasks/main.yml | |
parent | e408668e84f138f69317ff63e68b823dfe80188b (diff) |
vnc console can't be connected
JIRA: COMPASS-153
Change-Id: I2bf1f63fdb14ceca11a0a03f4225b09cd8780e95
Signed-off-by: baigk <baigk@baigk.local>
Diffstat (limited to 'deploy/adapters/ansible/roles/dashboard/tasks/main.yml')
-rw-r--r-- | deploy/adapters/ansible/roles/dashboard/tasks/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml index c9eccfb4..5afcb157 100644 --- a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml +++ b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml @@ -18,6 +18,11 @@ - name: remove ubuntu theme action: "{{ ansible_pkg_mgr }} name=openstack-dashboard-ubuntu-theme state=absent" +- name: update memcached conf + lineinfile: dest=/etc/memcached.conf state=present + regexp="-l *" + line="-l {{ internal_vip.ip }}" + - name: update ubuntu horizon settings template: src=local_settings_debian dest=/etc/openstack-dashboard/local_settings.py |