We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d2fcad commit 7256912Copy full SHA for 7256912
tests/Vagrantfile
@@ -7,6 +7,10 @@ CONFIGURATION_FILE = 'boxes.yml'
7
8
Vagrant.configure('2') do |config|
9
10
+ # overcome 'stdin: is not a tty' errors when trying to provision on vivid64
11
+ config.ssh.pty = true
12
+ config.ssh.shell = 'bash'
13
+
14
# puts "[DEBUG] loading box settings from #{CONFIGURATION_FILE}..."
15
vagrant_environment = YAML.load_file(File.expand_path(CONFIGURATION_FILE, File.dirname(__FILE__)))
16
0 commit comments