From 2dac00b9a46787a7d2a22048f2de2b073289ce83 Mon Sep 17 00:00:00 2001 From: yidong0635 Date: Wed, 22 May 2019 05:53:03 -0400 Subject: [PATCH] vm_setup: fix pop-up dialogs in auto installing package Installing this package "open-isns-utils" always with pop-up dialogs, we don't want to these dialog, so add --no-install-suggests --no-install-recommends to prevent it. Use sudo apt-get remove --purge * to simulate. Change-Id: I0b892b9e0c88c82ab9461a92e71dc0d9823ecaf9 Signed-off-by: yidong0635 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/455333 Tested-by: SPDK CI Jenkins Reviewed-by: Changpeng Liu Reviewed-by: Jim Harris --- test/common/config/vm_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/config/vm_setup.sh b/test/common/config/vm_setup.sh index 32c3a649b..a3881beab 100755 --- a/test/common/config/vm_setup.sh +++ b/test/common/config/vm_setup.sh @@ -485,7 +485,7 @@ if $INSTALL; then if ! sudo apt-get install -y libpmempool1; then echo "Package libpmempool1 is available at Ubuntu 18 [universe] repositorium" >&2 fi - if ! sudo apt-get install -y open-isns-utils; then + if ! sudo apt-get install -y --no-install-suggests --no-install-recommends open-isns-utils; then echo "Package open-isns-utils is available at Ubuntu 18 [universe] repositorium" >&2 fi