Sha256: c92622b76ab33fcbc32a8d651385f647eb96dbacb4ecbbc15ade12d2927474d9

Contents?: true

Size: 464 Bytes

Versions: 2

Compression:

Stored size: 464 Bytes

Contents

worked=1
s3_path="<%= data[:s3_url] %>"
output_path="<%= data[:output_path] %>"
log "fetch: starting to fetch $s3_path"
for attempt in {1..200}; do
  [[ $worked != 0 ]] || break
  log "fetch: attempt ${attempt} to get $s3_path ..."
  aws s3 cp --quiet $s3_path $output_path 2> >(log) && worked=0 || (log "fetch: attempt failed, sleeping 30"; sleep 30)
done
[[ $worked != 0 ]] && fatal "fetch: failed to pull deb from S3"
log "fetch: successfully fetched $s3_path"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dockly-2.0.1 snippets/get_from_s3.erb
dockly-2.0.0 snippets/get_from_s3.erb