diff options
author | wutianwei <wutianwei1@huawei.com> | 2017-06-28 14:19:02 +0800 |
---|---|---|
committer | chigang <chigang@huawei.com> | 2017-06-30 20:07:48 +0800 |
commit | 06b95e349cf3e6bc5d45b7030683d53eeae490ec (patch) | |
tree | 06f6aec0638c09ab56a5cdbb9d8d1e5a9fdf0d90 /deploy/adapters/ansible/roles/setup-host | |
parent | 81ddb0a110736415cab48240935b436cd6656ac7 (diff) |
Change the apt source
1. change the apt sorce from http://hk.archive.ubuntu.com
to http://archive.ubuntu.com
2. if setup host failed, destroy the failed lxc. then retry to setup.
3. fix the dns-nameserver bug
Change-Id: Ic609c75b50496e2174ab09425bce45a0ec2c09c0
Signed-off-by: wutianwei <wutianwei1@huawei.com>
Signed-off-by: chigang <chigang@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/setup-host')
-rw-r--r-- | deploy/adapters/ansible/roles/setup-host/tasks/main.yml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/deploy/adapters/ansible/roles/setup-host/tasks/main.yml b/deploy/adapters/ansible/roles/setup-host/tasks/main.yml index e22b3c60..e7aabcbb 100644 --- a/deploy/adapters/ansible/roles/setup-host/tasks/main.yml +++ b/deploy/adapters/ansible/roles/setup-host/tasks/main.yml @@ -18,7 +18,18 @@ shell: cat /var/log/osa/host.log | tail -n 500 | grep failed=1 |awk '{print $1}' register: failed_container -- name: echo failed_container +- name: destroy the failed_container + shell: "export ANSIBLE_LOG_PATH=/var/ansible/run/openstack_ocata-opnfv2/ansible.log; \ + export ANSIBLE_SCP_IF_SSH=y; \ + cd /opt/openstack-ansible/playbooks; \ + openstack-ansible lxc-containers-destroy.yml \ + -e container_name={{item}} -e force_containers_destroy=yes \ + -e force_containers_data_destroy=yes > /dev/null;" + with_items: + - "{{ failed_container.stdout_lines }}" + ignore_errors: True + +- name: retry to setup failed_container shell: "export ANSIBLE_LOG_PATH=/var/ansible/run/openstack_ocata-opnfv2/ansible.log; \ export ANSIBLE_SCP_IF_SSH=y; \ cd /opt/openstack-ansible/playbooks; \ |