JIRA: -
VM starts before the openflow is created in
br-int which cause first round dhcp request
can't be sent to controller.
Change-Id: Ie2de5a70890f3d0e9f383c9ccb0aa1126f25b2c8
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
when:
- checkresult.rc == 0
- offline_deployment is defined and offline_deployment == "Disable"
+
+- name: Add sleep in host_power_action
+ blockinfile:
+ dest: /etc/ansible/roles/repo_build/tasks/repo_clone_git.yml
+ block: |
+ {% raw %}
+ - name: Add sleep in host_power_action
+ shell:
+ sed -i '/return self.driver.host_power_action/i\ time.sleep(2)' manager.py
+ args:
+ chdir: "{{ repo_build_git_dir}}/nova/nova/compute"
+ ignore_errors: true
+ {% endraw %}