diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-06-01 12:38:07 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-01 12:38:07 +0200 |
commit | 57aa52511363bdc7a9eaabe0f55387641b39e8e4 (patch) | |
tree | d258c4ad25253c2f59b4cef9e6fbea989be74a06 | |
parent | b594314b45698c9881ef863677fe81352c0ed7de (diff) | |
download | jenkins.debian.net-57aa52511363bdc7a9eaabe0f55387641b39e8e4.tar.xz |
lvc: only install the debs needed for lvc on those nodes which need it
-rwxr-xr-x | update_jdn.sh | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index 3ae28de9..7376e106 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -192,13 +192,10 @@ if [ -f /etc/debian_version ] ; then vim zsh " + # install squid everywhere except on the armhf nodes case $HOSTNAME in jenkins|jenkins-test-vm|profitbricks-build*) DEBS="$DEBS - libvirt-bin - python3-yaml - postfix-pcre squid3" - # make sure that nested KVM is enabled (see whist:/etc/modprobe.d/kvm-intel-nested.conf) ;; *) ;; esac @@ -242,6 +239,7 @@ if [ -f /etc/debian_version ] ; then *) ;; esac # cucumber dependencies + # make sure that nested KVM is enabled (see whist:/etc/modprobe.d/kvm-intel-nested.conf) case $HOSTNAME in profitbricks-build10-amd64|jenkins-test-vm) DEBS="$DEBS cucumber @@ -250,10 +248,12 @@ if [ -f /etc/debian_version ] ; then imagemagick libav-tools libsikuli-script-java + libvirt-bin libvirt-dev ovmf python-jabberbot python-potr + python3-yaml ruby-guestfs ruby-libvirt ruby-net-irc @@ -270,6 +270,10 @@ if [ -f /etc/debian_version ] ; then ;; *) ;; esac + if [ "$HOSTNAME" = "jenkins-test-vm" ] ; then + # for phil only + DEBS="$DEBS postfix-pcre" + fi if [ "$HOSTNAME" = "jenkins" ] || [ "$HOSTNAME" = "jenkins-test-vm" ] ; then MASTERDEBS=" apache2 |