I have a little heavy Ansible role in Git which I am trying to install in my local using ansible-galaxy but I am getting CRC check failed error may be because connection is timing out while downloading the role. Is there a way to increase the ansible-galaxy timeout.
Asked
Active
Viewed 979 times
1 Answers
0
There seems to be no timeout value for ansible-galaxy
import process. The code waits infinitely for git
task status to become either SUCCESS
or FAILED
.
You can try adding --no-wait
option to the ansible-galaxy import
call which will return the control to the shell and let the import process finish in background, but I'm afraid CRC error comes from git
and it can't be helped.
You can always try to import the role using git import
directly in the CLI.

techraf
- 64,883
- 27
- 193
- 198
-
Yes it seems to be underlying git problem and not an issue with ansible-galaxy – Sharath Arakere Jul 14 '16 at 19:05