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
This commit is contained in:
Josh Sherman 2018-10-14 11:40:11 -05:00
parent 74d5351ed5
commit 33d35cbe10
No known key found for this signature in database
GPG key ID: 55B058A80530EF22

2
run.sh
View file

@ -1,5 +1,7 @@
#!/bin/bash #!/bin/bash
export DEBIAN_FRONTEND=noninteractive
if [ $# -eq 0 ]; then if [ $# -eq 0 ]; then
echo 'Missing argument, provider name' echo 'Missing argument, provider name'
exit 1 exit 1