Skip to content
#!/bin/bash
# vim: set noexpandtab:
# Copyright 2014-2018 Holger Levsen <holger@layer-acht.org>
# Copyright 2014-2019 Holger Levsen <holger@layer-acht.org>
# © 2015-2018 Mattia Rizzolo <mattia@debian.org>
# released under the GPLv=2
......@@ -192,6 +192,10 @@ if [ ! -z "$http_proxy" ] ; then
pbuilder_http_proxy="--http-proxy $http_proxy"
fi
for s in $SUITES ; do
if [ "${HOSTNAME:0:6}" = "osuosl" ] ; then
# osuosl nodes are not used to do Debian rebuilds
continue
fi
#
# chdist update
#
......@@ -265,7 +269,7 @@ set -e
# for Arch Linux
set +e
case $HOSTNAME in
profitbricks-build3-amd64|profitbricks-build4-amd64|jenkins)
osuosl-build169*|osuosl-build170*|jenkins)
echo "$(date -u) - updating Arch Linux schroot now."
schroot --directory /tmp -c source:jenkins-reproducible-archlinux -u root -- pacman -Syu --noconfirm
RESULT=$?
......