diff options
Diffstat (limited to 'roles/file_wait/tasks')
-rw-r--r-- | roles/file_wait/tasks/check.yml | 12 | ||||
-rw-r--r-- | roles/file_wait/tasks/main.yml | 4 |
2 files changed, 10 insertions, 6 deletions
diff --git a/roles/file_wait/tasks/check.yml b/roles/file_wait/tasks/check.yml index aba500b..aa55830 100644 --- a/roles/file_wait/tasks/check.yml +++ b/roles/file_wait/tasks/check.yml @@ -2,7 +2,7 @@ ansible.builtin.wait_for_connection: timeout: '{{ file_wait_seconds }}' -- name: Check if the file exists +- name: Check if file exists ansible.builtin.file: path: '{{ file_wait_path }}' state: file @@ -16,10 +16,14 @@ - name: If the host restarted, try again when: file_wait_check is unreachable block: - - name: Note a reboot happened + - name: Log the number of tolerable reboots + ansible.builtin.debug: + msg: 'Number of tolerable reboots: {{ file_wait_reboots }}' + + - name: Decrement the number of tolerable reboots ansible.builtin.set_fact: file_wait_reboots: '{{ (file_wait_reboots | int) - 1 }}' - - name: Retry if there're more attempts + - name: Retry if there're more tolerable reboots ansible.builtin.include_tasks: check.yml - when: (file_wait_reboots | int > 0) + when: (file_wait_reboots | int >= 0) diff --git a/roles/file_wait/tasks/main.yml b/roles/file_wait/tasks/main.yml index 76dce68..9afef57 100644 --- a/roles/file_wait/tasks/main.yml +++ b/roles/file_wait/tasks/main.yml @@ -1,7 +1,7 @@ -- name: Checking if the file exists +- name: Check if file exists ansible.builtin.include_tasks: check.yml -- name: Fail unless the file exists +- name: Fail unless file exists ansible.builtin.fail: msg: 'File is missing: {{ file_wait_path }}' when: file_wait_check is not defined or file_wait_check is not succeeded or file_wait_check is unreachable |