From 5dca9afd1961cd45aa07666b9a94972b322fd1eb Mon Sep 17 00:00:00 2001 From: Attila Fazekas Date: Fri, 24 Oct 2014 11:12:51 +0200 Subject: [PATCH] yum non interactive yum without -y option might ask for interactive response. "Is this ok [y/d/N]: " Adding -y to the yum command. Change-Id: I74c9615c7d0288cf9815ee96b1484bf31dcbb6c1 --- devstack-vm-gate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack-vm-gate.sh b/devstack-vm-gate.sh index f22d6882..c7bc6256 100755 --- a/devstack-vm-gate.sh +++ b/devstack-vm-gate.sh @@ -47,7 +47,7 @@ function setup_localrc { sudo apt-get update sudo apt-get install python-yaml elif is_fedora; then - sudo yum install PyYAML + sudo yum install -y PyYAML fi MY_ENABLED_SERVICES=`cd $BASE/new/devstack-gate && ./test-matrix.py -b $LOCALRC_BRANCH -f $DEVSTACK_GATE_FEATURE_MATRIX`