From cf36fdc7f90db50630af2a2808229190ae8c2e54 Mon Sep 17 00:00:00 2001 From: Marcel Hauf Date: Tue, 24 Mar 2015 17:42:22 +0100 Subject: [PATCH] Use VBoxManage instead of virtualbox in cluster/vagrant/util.sh verify-prereqs function. The executable virtualbox does not exist. --- cluster/vagrant/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/vagrant/util.sh b/cluster/vagrant/util.sh index 444c3f4efba..bdd482df35d 100644 --- a/cluster/vagrant/util.sh +++ b/cluster/vagrant/util.sh @@ -33,7 +33,7 @@ function detect-minions { # Verify prereqs on host machine Also sets exports USING_KUBE_SCRIPTS=true so # that our Vagrantfile doesn't error out. function verify-prereqs { - for x in vagrant virtualbox; do + for x in vagrant VBoxManage; do if ! which "$x" >/dev/null; then echo "Can't find $x in PATH, please fix and retry." exit 1