diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-15 20:31:18 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-15 20:31:18 +0200 |
commit | 47388af20d0b1d7d87a732d151bfe492b4f438e2 (patch) | |
tree | db3a76281ea0081aa4c5ce5d73bfdbe1606c870d | |
parent | 108a117c1b102c9e21a863c79299ba247d05e682 (diff) | |
download | jenkins.debian.net-47388af20d0b1d7d87a732d151bfe492b4f438e2.tar.xz |
reproducible: update schroots on jenkins again
-rwxr-xr-x | bin/reproducible_maintenance.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index e917dd3f..c577a659 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -45,10 +45,6 @@ echo "$(date -u) - updating the schroots and pbuilder now..." set +e ARCH=$(dpkg --print-architecture) for s in $SUITES ; do - if [ "$(hostname)" = "jenkins" ] ; then - echo "$(date -u) - nothing to do on $(hostname -f)..." - break - fi if [ "$ARCH" = "armhf" ] && [ "$s" != "unstable" ] ; then continue fi @@ -75,7 +71,12 @@ for s in $SUITES ; do # # pbuilder update # - echo "$(date -u) - updating pbuilder for $s/$ARCH now." + # pbuilder aint used on jenkins anymore + if [ "$(hostname)" = "jenkins" ] ; then + continue + else + echo "$(date -u) - updating pbuilder for $s/$ARCH now." + fi # use host apt proxy configuration for pbuilder if [ ! -z "$http_proxy" ] ; then pbuilder_http_proxy="--http-proxy $http_proxy" |