From 496fc1c7f54132410af5fd84bfe10b8e68d02a1e Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Fri, 18 Sep 2009 17:33:26 -0400 Subject: integrity-check: Loop over arches THis simplifies the command line and we do both anyway Signed-off-by: Aaron Griffin --- cron-jobs/integrity-check | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/cron-jobs/integrity-check b/cron-jobs/integrity-check index b3185ec..8f23129 100755 --- a/cron-jobs/integrity-check +++ b/cron-jobs/integrity-check @@ -3,11 +3,13 @@ basedir="$(dirname $0)" if [ $# -ne 3 ]; then - echo "usage: $(basename $0) [,,...] " >&2 + echo "usage: $(basename $0) [,,...] " >&2 exit 1 fi -$basedir/check_archlinux/check_packages.py \ - --repos="$1" \ - --abs-tree="/srv/abs/rsync/$2,/srv/abs/rsync/any" --arch="$2" |\ - $basedir/devlist-mailer "Integrity Check $2: $1" "$3" +for arch in i686 x86_64; do + $basedir/check_archlinux/check_packages.py \ + --repos="$1" \ + --abs-tree="/srv/abs/rsync/$arch,/srv/abs/rsync/any" --arch="$arch" |\ + $basedir/devlist-mailer "Integrity Check $arch: $1" "$3" +done -- cgit v1.2.3-24-g4f1b