From: Benjamin Drung Date: Wed, 8 Oct 2014 09:45:53 +0000 (+0200) Subject: debian_repos2db.sh: Update list of repos from alexandria to repo.pb.local X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=4c5882d900ed0743d1fdbcdd99fae138a330fa31;p=profitbricks%2Fjenkins-build-scripts.git debian_repos2db.sh: Update list of repos from alexandria to repo.pb.local --- diff --git a/debian_repos2db.sh b/debian_repos2db.sh index ce40529..6a8c8d8 100755 --- a/debian_repos2db.sh +++ b/debian_repos2db.sh @@ -1,32 +1,35 @@ #!/bin/bash -REPO_SUITES[0]="squeeze profitbricks-backports profitbricks-backports-proposed-updates profitbricks-backports-pre-staging" +REPO_SUITES[0]="squeeze squeeze-updates" REPO_SECTIONS[0]="main contrib non-free" -REPO_BASE_URL[0]="http://alexandria/debian-mirror/dists/SUITE/SECTION/binary-amd64/" +REPO_BASE_URL[0]="http://repo.pb.local/debian/dists/SUITE/SECTION/binary-amd64" +REPO_ORIGIN[0]="debian" -REPO_SUITES[1]="production-approved-updates production-proposed-updates production pre-staging" +REPO_SUITES[1]="squeeze/updates" REPO_SECTIONS[1]="main contrib non-free" -REPO_BASE_URL[1]="http://alexandria/profitbricks-repository/dists/SUITE/SECTION/binary-amd64/" +REPO_BASE_URL[1]="http://repo.pb.local/debian-security/dists/SUITE/SECTION/binary-amd64" +REPO_ORIGIN[1]="debian" -REPO_SUITES[2]="pool" -REPO_SECTIONS[2]="main non-free" -REPO_BASE_URL[2]="http://alexandria/profitbricks-repository/SUITE/SECTION/" +REPO_SUITES[2]="squeeze squeeze-proposed" +REPO_SECTIONS[2]="main contrib non-free" +REPO_BASE_URL[2]="http://repo.pb.local/pb-debian/dists/SUITE/SECTION/binary-amd64" +REPO_ORIGIN[2]="profitbricks" -REPOS=2 +REPO_SUITES[3]="squeeze-dev" +REPO_SECTIONS[3]="main contrib non-free" +REPO_BASE_URL[3]="http://repo.pb.local/pb-debian-dev/dists/SUITE/SECTION/binary-amd64" +REPO_ORIGIN[3]="profitbricks" + +REPOS=3 for REPO in $(seq 0 $REPOS) ; do - if [ "$REPO" == 0 ] ; then - ORIGIN=debian - else - ORIGIN=profitbricks - fi for SUITE in ${REPO_SUITES[$REPO]} ; do for SECTION in ${REPO_SECTIONS[$REPO]} ; do URL=$(echo ${REPO_BASE_URL[$REPO]} | sed -s "s#SUITE#$SUITE#" | sed -s "s#SECTION#$SECTION#")/Packages echo $URL wget $URL -o /dev/null - [ -s Packages ] && ./debian_packages2db.py Packages $ORIGIN + [ -s Packages ] && ./debian_packages2db.py Packages ${REPO_ORIGIN[$REPO]} rm Packages done done