Use VBoxManage instead of virtualbox in cluster/vagrant/util.sh verify-prereqs function. The executable virtualbox does not exist.

This commit is contained in:
Marcel Hauf
2015-03-24 17:42:22 +01:00
parent bc4a082f7a
commit cf36fdc7f9

View File

@@ -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