X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Fschroot%2Ffiles%2Fsetup-all-dchroots;h=2bf8a5454cfa2ea9fabdde03340fe0a771145940;hb=e44a96b6508415fb4ed53c9c452a8d1b555e95af;hp=7ff84b40cce3844a42c25817fd75ab931de5284f;hpb=49f7c90c52341e0a0666e578f6ca09c7d2d5d55b;p=mirror%2Fdsa-puppet.git diff --git a/modules/schroot/files/setup-all-dchroots b/modules/schroot/files/setup-all-dchroots index 7ff84b40c..2bf8a5454 100755 --- a/modules/schroot/files/setup-all-dchroots +++ b/modules/schroot/files/setup-all-dchroots @@ -31,10 +31,13 @@ get_suites() { case "$1" in amd64|i386|armel|armhf) - echo "sid buster stretch jessie" + echo "sid bullseye buster stretch jessie" + ;; + mips) + echo "buster stretch" ;; *) - echo "sid buster stretch" + echo "sid bullseye buster stretch" ;; esac } @@ -70,8 +73,10 @@ cat << EOF usage: $0 [] [buildd] OPTIONS: + -a limit to ARCH -c write config only -h this help + -s limit to SUITE EOF } @@ -83,9 +88,14 @@ EOF # parse options ########## EXTRAARGS="" -while getopts "cu" OPTION +limitarch="" +limitsuite="" +while getopts "cha:s:" OPTION do case $OPTION in + a) + limitarch="$OPTARG" + ;; c) EXTRAARGS="$EXTRAARGS -c" ;; @@ -93,6 +103,9 @@ do usage exit 0 ;; + s) + limitsuite="$OPTARG" + ;; *) usage >&2 exit 1 @@ -132,7 +145,7 @@ fi # get list of archs based on dpkg architecture ########## DPKGARCH=$(dpkg --print-architecture) -archs="DPKGARCH" +archs="$DPKGARCH" case "$DPKGARCH" in amd64) archs="$archs i386" @@ -162,7 +175,9 @@ esac err=0 for a in $archs; do + [ "$limitarch" != "" ] && [ "$limitarch" != "$a" ] && continue for s in `get_suites "$a"`; do + [ "$limitsuite" != "" ] && [ "$limitsuite" != "$s" ] && continue if ! do_one "$a" "$s"; then err=1 echo >&2