From: Andrew Schoen Date: Mon, 31 Aug 2015 15:41:37 +0000 (-0500) Subject: users: increase the retry count to 24 for fetching ssh keys from github X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F122%2Fhead;p=ceph-cm-ansible.git users: increase the retry count to 24 for fetching ssh keys from github We were still getting timeouts when requesting keys from github, so we're gonna try to just simply increase the number of times it retries to see if that helps things. See: http://tracker.ceph.com/issues/12868 Signed-off-by: Andrew Schoen --- diff --git a/roles/users/tasks/main.yml b/roles/users/tasks/main.yml index 55844e75..ed7034b2 100644 --- a/roles/users/tasks/main.yml +++ b/roles/users/tasks/main.yml @@ -46,7 +46,8 @@ # Register and retry to work around transient githubusercontent.com issues register: ssh_key_update until: ssh_key_update|success - retries: 3 + # try for 2 minutes to retrieve the key before failing + retries: 24 delay: 5 tags: - pubkeys