lib/vagrant/config/ssh.rb in vagrant-0.7.1 vs lib/vagrant/config/ssh.rb in vagrant-0.7.2

- old
+ new

@@ -9,9 +9,14 @@ attr_accessor :max_tries attr_accessor :timeout attr_writer :private_key_path attr_accessor :forward_agent attr_accessor :forward_x11 + attr_accessor :sudo_shell + + def initialize + @sudo_shell = "bash" + end def private_key_path File.expand_path(@private_key_path, env.root_path) end