From 4ca636f9b61d77bff24891593bca5061ee503973 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 18 Jul 2018 10:28:03 +0800 Subject: [PATCH] install-deps: set DEBIAN_FRONTEND for apt-get so it won't complain if the tty is not an interactive one. Signed-off-by: Kefu Chai --- install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-deps.sh b/install-deps.sh index a02fd61b812..ebc5728024b 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -31,7 +31,7 @@ fi function install_seastar_deps { if $with_seastar; then - $SUDO apt-get install -y \ + $SUDO env DEBIAN_FRONTEND=noninteractive apt-get install -y \ ragel libhwloc-dev libnuma-dev libpciaccess-dev \ libcrypto++-dev libgnutls28-dev libsctp-dev libprotobuf-dev \ protobuf-compiler systemtap-sdt-dev libyaml-cpp-dev -- 2.39.5