From 1db0dd3092aaa642d05b1d0c3dd8b0c389a63168 Mon Sep 17 00:00:00 2001 From: Joshua Tauberer Date: Tue, 6 May 2014 09:57:11 -0400 Subject: [PATCH] system.sh: make apt-get upgrade quieter --- scripts/system.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/system.sh b/scripts/system.sh index 76e33d2d..68826e5e 100755 --- a/scripts/system.sh +++ b/scripts/system.sh @@ -2,8 +2,8 @@ source scripts/functions.sh # load our functions # Base system configuration. -apt-get -q -q update -apt-get -q -y upgrade +apt-get -qq update +apt-get -qq -y upgrade # Install openssh-server to ensure that the end result is consistent across all Mail-in-a-Boxes. apt_install openssh-server