From d1cb5963d1168d5c3fae70d5a83b7dbe93b2390c Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Mon, 9 Mar 2015 02:21:12 +0900 Subject: [PATCH] Add --assume-yes option to apt-get During the installtion of python-yaml, apt-get shows a prompt and it stops devstack-gate if python-yaml is not installed. Change-Id: Iabe6d1a7dd63149bce9b0473fae2ff994f7f0856 --- 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 177ec242..99909a25 100755 --- a/devstack-vm-gate.sh +++ b/devstack-vm-gate.sh @@ -69,7 +69,7 @@ function setup_localrc { # Install PyYaml for test-matrix.py if uses_debs; then sudo apt-get update - sudo apt-get install python-yaml + sudo apt-get --assume-yes install python-yaml elif is_fedora; then sudo yum install -y PyYAML fi