diff --git a/tools/scripts/callback_retry.sh b/tools/scripts/request_tower_configuration.sh similarity index 56% rename from tools/scripts/callback_retry.sh rename to tools/scripts/request_tower_configuration.sh index 0a0208e8be..0e569ac5fd 100644 --- a/tools/scripts/callback_retry.sh +++ b/tools/scripts/request_tower_configuration.sh @@ -1,16 +1,17 @@ #!/bin/bash usage() { - echo -e "Retry callback attempt if we don't receive a 202 response from the Tower API\n" + echo -e "Requests server configuration from Ansible Tower\n" echo "Usage: $0 [:server port] " + echo "Example: $0 example.towerhost.net 44d7507f2ead49af5fca80aa18fd24bc 38" exit 1 } [ $# -lt 3 ] && usage -retry_attempts=5 +retry_attempts=10 attempt=0 -while [[ $attempt < $retry_attempts ]] +while [[ $attempt -lt $retry_attempts ]] do status_code=`curl -s -i --data "host_config_key=$2" http://$1/api/v1/job_templates/$3/callback/ | head -n 1 | awk '{print $2}'` if [[ $status_code == 202 ]] @@ -18,7 +19,7 @@ do exit 0 fi attempt=$(( attempt + 1 )) - echo "${status_code} received... retrying." - sleep 5 + echo "${status_code} received... retrying in 1 minute. (Attempt ${attempt})" + sleep 60 done exit 1