diff options
author | baigk <baiguoku@huawei.com> | 2015-11-15 22:59:39 -0800 |
---|---|---|
committer | baigk <baiguoku@huawei.com> | 2015-11-16 07:03:13 +0000 |
commit | a8aa85f2a26256938b0057802ac5521edb594791 (patch) | |
tree | 6a421e4c5e67f806e28e3f197429e7fe9b851faf /deploy/adapters/ansible/roles/dashboard/tasks | |
parent | e28554faea569b5e6d15b3816df702e664b5bba4 (diff) |
vnc console can't be connected
JIRA: COMPASS-153
Change-Id: I99e85aea7c35ae6d82fac7b667eadd9577351e01
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 | 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 dd5c6fd0..01c7ebb3 100644 --- a/deploy/adapters/ansible/roles/dashboard/tasks/main.yml +++ b/deploy/adapters/ansible/roles/dashboard/tasks/main.yml @@ -23,6 +23,11 @@ dest=/etc/openstack-dashboard/local_settings.py backup=yes +- name: update memcached conf + lineinfile: dest=/etc/memcached.conf state=present + regexp="-l *" + line="-l {{ internal_vip.ip }}" + - name: restart dashboard services service: name={{ item }} state=restarted enabled=yes with_items: services | union(services_noarch) |