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" --arch="$2" |\ $basedir/devlist-mailer "Integrity Check $2: $1" "$3"