Commit f8090c30 authored by Rafael Monnerat's avatar Rafael Monnerat

packer: Add a script to check if all images are present on shacache

parent 90323358
for i in `cat SHA512SUM.txt | cut -f1 -d\ `;
do
python util/testurl.py http://download.shacache.org/$i && echo OK $i || echo FAIL $i
sleep 10
done
import urllib2
import sys
start = urllib2.urlopen(sys.argv[1]).read(24)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment