diff options
author | Rob Austein <sra@hactrn.net> | 2007-12-24 06:36:18 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-12-24 06:36:18 +0000 |
commit | e62cfb013638b5e68218c0702e88c6c4dfeb06f9 (patch) | |
tree | 93b5b864915a92a03e805062cf3b5b6d7f8b1e27 /scripts/Old/master.sh | |
parent | 6923ec5709af6f4fa5ea8e6e9af9265f5b9e213f (diff) |
Cleanup
svn path=/scripts/Old/check-hashes.sh; revision=1434
Diffstat (limited to 'scripts/Old/master.sh')
-rw-r--r-- | scripts/Old/master.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/Old/master.sh b/scripts/Old/master.sh new file mode 100644 index 00000000..8f59d357 --- /dev/null +++ b/scripts/Old/master.sh @@ -0,0 +1,24 @@ +#!/bin/sh - +# $Id$ + +scripts="subvert-rpki.hactrn.net/scripts" + +repositories="ca-trial.ripe.net/RIPE ca-trial.ripe.net/ARIN repository.apnic.net" + +cd `dirname $0` + +. $scripts/mirror-apnic.sh +. $scripts/mirror-ripe.sh + +perl $scripts/gen-verify-test.pl $repositories | +tee verify.sh | +sh 2>&1 | +tee verify.log + +perl $scripts/make-hashes.pl $repositories | +tee make-hashes.sh | +sh 2>&1 | +tee make-hashes.log + +sh $scripts/check-hashes.sh 2>&1 | +tee check-hashes.log |