mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-04-27 00:59:22 -04:00
19 lines
526 B
Bash
19 lines
526 B
Bash
#!/bin/bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
export VAGRANT_EXPERIMENTAL="${VAGRANT_EXPERIMENTAL:-1}"
|
|
export VAGRANT_SPEC_BOX="${VAGRANT_SPEC_BOX}"
|
|
|
|
# Explicitly use Go binary
|
|
export VAGRANT_PATH=/vagrant/vagrant
|
|
|
|
# Explicitly set high open file limits... vagrant-ruby tends to run into the
|
|
# default 1024 limit during some operations.
|
|
ulimit -n 65535
|
|
|
|
vagrant-spec ${VAGRANT_SPEC_ARGS} --config /vagrant/test/vagrant-spec/configs/vagrant-spec.config.virtualbox.rb
|
|
result=$?
|
|
|
|
exit $result
|