mirror of
https://github.com/dokku/dokku.git
synced 2025-12-28 16:06:40 +01:00
Use -qq flag on apt-get to quiet installations of packages
This commit is contained in:
6
Makefile
6
Makefile
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user