Revert "Add retries to upstart/systemd reload"

This reverts commit 0986fa15d4.

This did not help at all and it actually ends up slowing down
the deployment. The real problem was resolved in subsequent
patches so I think it's better to remove this.

Change-Id: Ie1b492ea38a17dcaefd309f9e56feeda80ca96ee
This commit is contained in:
Jesse Pretorius (odyssey4me) 2016-10-14 13:37:55 +00:00
parent 0986fa15d4
commit f93a5186aa
1 changed files with 0 additions and 8 deletions

View File

@ -15,20 +15,12 @@
- name: Reload systemd daemon
command: "systemctl daemon-reload"
register: reload_systemd
until: reload_systemd | success
retries: 5
delay: 2
notify:
- Restart cinder services
- name: Reload upstart init scripts
shell: |
initctl reload-configuration
register: reload_upstart
until: reload_upstart | success
retries: 5
delay: 2
notify:
- Restart cinder services