Remove unused configuration key

This commit is contained in:
Mitchell Hashimoto 2012-01-11 21:30:59 -08:00
parent bfb52ba7dc
commit 1e856f7c75
2 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ Vagrant::Config.run do |config|
# default config goes here
config.vagrant.dotfile_name = ".vagrant"
config.vagrant.host = :detect
config.vagrant.ssh_session_cache = false
config.ssh.username = "vagrant"
config.ssh.password = "vagrant"

View File

@ -3,7 +3,6 @@ module Vagrant
class VagrantConfig < Base
attr_accessor :dotfile_name
attr_accessor :host
attr_accessor :ssh_session_cache
def validate(env, errors)
[:dotfile_name, :host].each do |field|