diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-03-25 14:22:08 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-03-25 14:22:08 -0400 |
commit | 7e232f5e121357efb19cd8b2d99995a88c6aec7f (patch) | |
tree | 233fbf3299706d2bd992871cc47a24ce70e41c1d | |
parent | 7af38ee78ec0fac79ac0dcf807da8da5600ef1ed (diff) | |
download | jenkins.debian.net-7e232f5e121357efb19cd8b2d99995a88c6aec7f.tar.xz |
reproducible debian: fix first install with bpo
-rwxr-xr-x | update_jdn.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index 2d0f0618..841f589c 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -329,16 +329,16 @@ if [ -f /etc/debian_version ] ; then sudo apt-get update sudo apt-get install $DEBS $MASTERDEBS sudo apt-get install -t jessie-backports \ - pbuilder || echo "this should only fail on the firts install" + pbuilder || echo "this should only fail on the first install" # botch # for varying kernels # we use bpo kernels on pb-build5+6 (and i386 kernel on pb-build2-i386) if [ "$HOSTNAME" = "profitbricks-build5-amd64" ] || [ "$HOSTNAME" = "profitbricks-build6-i386" ]; then - sudo apt-get install -t jessie-backports linux-image-amd64 + sudo apt-get install -t jessie-backports linux-image-amd64 || echo "this should only fail on the first install" fi # only needed on the main node if [ "$HOSTNAME" = "jenkins-test-vm" ] ; then - sudo apt-get install -t jessie-backports jenkins-job-builder + sudo apt-get install -t jessie-backports jenkins-job-builder || echo "this should only fail on the first install" elif [ "$HOSTNAME" = "jenkins" ] ; then sudo apt-get install -t jessie-backports ffmpeg libav-tools jenkins-job-builder fi |