updated restart settings
diff --git a/tasks/main.yml b/tasks/main.yml index 3eb64ae..1c4dd41 100644 --- a/tasks/main.yml +++ b/tasks/main.yml
@@ -29,10 +29,10 @@ - name: Waiting for server to complete restarting become: no - local_action: wait_for host='{{ ansible_host }}' state=started delay=60 timeout='{{ server_restart_timeout | d(720) }}' + local_action: wait_for host='{{ ansible_host }}' state=started delay={{ start_check_delay | d(60) }} timeout='{{ server_restart_timeout | d(60) }}' when: not disabled - name: Server usually needs a little more time ... become: no - local_action: wait_for host='{{ ansible_host }}' state=started delay=60 + local_action: wait_for host='{{ ansible_host }}' state=started delay={{ start_check_delay | d(60) }} when: not disabled