mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
Solved bugs
This commit is contained in:
@@ -1,25 +1,4 @@
|
||||
---
|
||||
- name: Wait in a loop until the service update-docker.service is inactive
|
||||
block:
|
||||
- name: Check the status of update-docker.service
|
||||
command: systemctl is-active update-docker.service
|
||||
register: service_status
|
||||
changed_when: false
|
||||
failed_when: service_status.stdout == 'active'
|
||||
|
||||
- name: Pause for 60 seconds if the service is still active
|
||||
pause:
|
||||
seconds: 60
|
||||
when: service_status.stdout == 'active'
|
||||
become: true
|
||||
until: service_status.stdout != 'active'
|
||||
retries: 720
|
||||
delay: 10
|
||||
|
||||
- name: Abort if the service is still active after the maximum attempts
|
||||
fail:
|
||||
msg: "The update-docker.service is still active after the maximum number of attempts."
|
||||
when: service_status.stdout == 'active' and service_status.attempts == 10
|
||||
|
||||
- name: docker & docker compose install
|
||||
pacman:
|
||||
|
Reference in New Issue
Block a user