Skip to content

Commit

Permalink
Merge pull request #18 from ajanis/fix/apt-timeout
Browse files Browse the repository at this point in the history
fix: Apt timeout to 300
  • Loading branch information
Teagan42 authored Jun 14, 2024
2 parents 649e176 + 6cfd6d6 commit ef7ebc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
register: docker_socket_service
until: docker_socket_service is not failed
retries: 10
timeout: 60
timeout: 300
delay: 10
tags:
- docker-install
Expand All @@ -31,7 +31,7 @@
register: docker_container_service
until: docker_container_service is not failed
retries: 10
timeout: 60
timeout: 300
delay: 10
tags:
- docker-install
Expand Down
10 changes: 5 additions & 5 deletions tasks/install_debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
register: initramfs_update_result
until: initramfs_update_result is not failed
retries: 10
timeout: 60
timeout: 300
delay: 10
changed_when: initramfs_update_result is changed
when:
Expand Down Expand Up @@ -198,7 +198,7 @@
register: install_nvidia_dependencies
until: install_nvidia_dependencies is not failed
retries: 10
timeout: 60
timeout: 300
delay: 10
notify: reload docker
tags:
Expand All @@ -213,7 +213,7 @@
register: install_nvidia_drivers
until: install_nvidia_drivers is not failed
retries: 10
timeout: 60
timeout: 300
delay: 10
notify: reload docker
tags:
Expand All @@ -228,7 +228,7 @@
register: install_nvidia_runtime
until: install_nvidia_runtime is not failed
retries: 10
timeout: 60
timeout: 300
delay: 10
notify: reload docker
tags:
Expand Down Expand Up @@ -262,7 +262,7 @@
register: nvidia_transcode_patch_result
until: nvidia_transcode_patch_result is not failed
retries: 10
timeout: 60
timeout: 300
delay: 10
notify: reload docker
when:
Expand Down

0 comments on commit ef7ebc9

Please sign in to comment.