aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/setup-host
diff options
context:
space:
mode:
authorwutianwei <wutianwei1@huawei.com>2017-06-21 11:02:26 +0800
committerwutianwei <wutianwei1@huawei.com>2017-06-27 11:01:32 +0800
commit7107ed60659e23863ffcd227600bf741489f24d8 (patch)
tree68900ea665704bae00d2ad9d172874ee9ab0138f /deploy/adapters/ansible/roles/setup-host
parent0ad9f476a6b7adb8ece6d4cf60d0204103992699 (diff)
Support Centos7
1. install the yum packages 2. add the ifcfg scripts to adapt Centos7 3. change MaxSession to 100 4. if setup-host failed, retry to run the failed container Change-Id: I57589d38f6af1677cb889875c85d6b8bac5c80d0 Signed-off-by: wutianwei <wutianwei1@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/setup-host')
-rw-r--r--deploy/adapters/ansible/roles/setup-host/tasks/main.yml15
1 files changed, 14 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 f0b1051c..e22b3c60 100644
--- a/deploy/adapters/ansible/roles/setup-host/tasks/main.yml
+++ b/deploy/adapters/ansible/roles/setup-host/tasks/main.yml
@@ -15,7 +15,20 @@
| tee -a /var/log/osa/host.log > /dev/null"
- name: read the ansible log file
- shell: cat /var/log/osa/host.log | tail -n 1000
+ shell: cat /var/log/osa/host.log | tail -n 500 | grep failed=1 |awk '{print $1}'
+ register: failed_container
+
+- name: echo 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 setup-hosts.yml --limit {{item}} \
+ | tee -a /var/log/osa/retry-host.log > /dev/null"
+ with_items:
+ - "{{ failed_container.stdout_lines }}"
+
+- name: read the ansible log file
+ shell: cat /var/log/osa/retry-host.log | tail -n 500
register: setup_host_result
- fail: