Skip to content

Commit 7256912

Browse files
committed
overcome 'stdin: is not a tty' errors when trying to provision on vivid64.
1 parent 9d2fcad commit 7256912

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/Vagrantfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ CONFIGURATION_FILE = 'boxes.yml'
77

88
Vagrant.configure('2') do |config|
99

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+
1014
# puts "[DEBUG] loading box settings from #{CONFIGURATION_FILE}..."
1115
vagrant_environment = YAML.load_file(File.expand_path(CONFIGURATION_FILE, File.dirname(__FILE__)))
1216

0 commit comments

Comments
 (0)