From 33d35cbe10e99f3eeea547246b8eba0f83f4b815 Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Sun, 14 Oct 2018 11:40:11 -0500 Subject: [PATCH] fix: add non-interactive flag Fixes the issue where the install for MySQL gets locked up because it's expecting input on the password. Benchmarks are using empty passwords so this is fine --- run.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run.sh b/run.sh index 7d14a2c..5e7cd95 100755 --- a/run.sh +++ b/run.sh @@ -1,5 +1,7 @@ #!/bin/bash +export DEBIAN_FRONTEND=noninteractive + if [ $# -eq 0 ]; then echo 'Missing argument, provider name' exit 1