Use -qq flag on apt-get to quiet installations of packages

This commit is contained in:
Jose Diaz-Gonzalez
2014-10-04 07:48:08 -04:00
parent b848accd56
commit 2e5f88b285
6 changed files with 11 additions and 11 deletions

View File

@@ -47,14 +47,14 @@ docker: aufs
echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list
apt-get update
ifdef DOCKER_VERSION
apt-get install -y lxc-docker-${DOCKER_VERSION}
apt-get install -qq -y lxc-docker-${DOCKER_VERSION}
else
apt-get install -y lxc-docker
apt-get install -qq -y lxc-docker
endif
sleep 2 # give docker a moment i guess
aufs:
lsmod | grep aufs || modprobe aufs || apt-get install -y linux-image-extra-`uname -r`
lsmod | grep aufs || modprobe aufs || apt-get install -qq -y linux-image-extra-`uname -r` > /dev/null
stack:
ifdef BUILD_STACK