blob: 91a371445fd46924a87c67386784a3f262c4e6ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
DIR=`pwd`
ODIR=$1
(while read url cert; do
cfile=""
if [ "x$cert" != "x" ]; then
cfile=$DIR/certs/$cert
fi
$DIR/scripts/pull-and-verify.sh $url $ODIR $cfile
done) < $ODIR/metadata.lst
|