blob: a0dd9aac6bad4a72e4243b3f87791ecab3f42e8d [file] [log] [blame]
#!/bin/bash
FILES="$(cat /srv/images.txt)"
URL="http://images.mirantis.com"
while getopts "u:" option
do
case "${option}"
in
u|\?) URL=${OPTARG};;
esac
done
for FILE in $FILES
do
FILENAME=`echo $FILE | sed 's/.*\///g'`
if [ -f "/srv/http/images/$FILENAME" ]; then
MD5=`md5sum /srv/http/images/$FILENAME | awk '{ print $1 }'`
echo "===> File /srv/http/images/$FILENAME exists and it's MD5 hash is: $MD5"
else
MD5="None"
echo "===> File /srv/http/images/$FILENAME doesn't exist"
fi
wget $URL/$FILENAME.md5 -q -O /srv/http/images/$FILENAME.md5
MD5UPSTREAM=`cat /srv/http/images/$FILENAME.md5 | awk '{ print $1 }'`
rm /srv/http/images/$FILENAME.md5
if [ "$MD5" != "$MD5UPSTREAM" ];
then
echo "Hashes of image $FILENAME don't match."
echo "Local MD5 hash is: $MD5"
echo "Upstream MD5 hash is: $MD5UPSTREAM"
rm /srv/http/images/$FILENAME
wget $URL/$FILENAME -O /srv/http/images/$FILENAME
else
echo "Hashes of image $FILENAME match."
fi
done