summaryrefslogtreecommitdiffstats
path: root/cron-jobs/integrity-check
blob: b3185ec69140ca62368f2a14e0fd814493d01778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

basedir="$(dirname $0)"

if [ $# -ne 3 ]; then
    echo "usage: $(basename $0) <repo>[,<repo>,...] <arch> <mailto>" >&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"