Commit bc9f9252 authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible: install only some packages on the build hosts

parent d8744aa0
...@@ -86,12 +86,26 @@ if [ -f /etc/debian_version ] ; then ...@@ -86,12 +86,26 @@ if [ -f /etc/debian_version ] ; then
# install packages we need # install packages we need
# #
if [ ./$0 -nt $STAMP ] || [ ! -f $STAMP ] ; then if [ ./$0 -nt $STAMP ] || [ ! -f $STAMP ] ; then
sudo apt-get install \ DEBS=" \
bash-completion \
bc \
curl \
debootstrap \
devscripts \
git
schroot \
screen \
subversion \
subversion-tools \
sudo \
unzip \
vim \
"
if [ "$HOSTNAME" = "jenkins" ] ; then
MASTERDEBS=" \
apache2 \ apache2 \
apt-file \ apt-file \
apt-listchanges \ apt-listchanges \
bash-completion \
bc \
binfmt-support \ binfmt-support \
bison \ bison \
build-essential \ build-essential \
...@@ -100,9 +114,6 @@ if [ -f /etc/debian_version ] ; then ...@@ -100,9 +114,6 @@ if [ -f /etc/debian_version ] ; then
cron-apt \ cron-apt \
csvtool \ csvtool \
cucumber \ cucumber \
curl \
debootstrap \
devscripts \
dnsmasq-base \ dnsmasq-base \
dose-extra \ dose-extra \
dstat \ dstat \
...@@ -170,21 +181,14 @@ if [ -f /etc/debian_version ] ; then ...@@ -170,21 +181,14 @@ if [ -f /etc/debian_version ] ; then
ruby-packetfu \ ruby-packetfu \
ruby-rjb \ ruby-rjb \
ruby-rspec \ ruby-rspec \
schroot \
screen \
seabios \ seabios \
shorewall \ shorewall \
shorewall6 \ shorewall6 \
sqlite3 \ sqlite3 \
squid3 \ squid3 \
subversion \
subversion-tools \
sudo \
syslinux \ syslinux \
tcpdump \ tcpdump \
unclutter \ unclutter \
unzip \
vim \
virt-viewer \ virt-viewer \
vncsnapshot \ vncsnapshot \
vnstat \ vnstat \
...@@ -193,7 +197,11 @@ if [ -f /etc/debian_version ] ; then ...@@ -193,7 +197,11 @@ if [ -f /etc/debian_version ] ; then
xtightvncviewer \ xtightvncviewer \
xvfb \ xvfb \
zutils \ zutils \
sysvinit-core sysvinit-core"
else
MASTERDEBS=""
fi
sudo apt-get install "$DEBS $MASTERDEBS"
sudo apt-get install -t jessie-backports \ sudo apt-get install -t jessie-backports \
pbuilder pbuilder
# botch # botch
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment