інше місце (кореневе місце, де він читає змінні ENV) знаходиться в shared_helpers.rb, рядок 71 (vagrant v 1.6.5):
# This returns the path to the ~/.vagrant.d folder where Vagrant's
# per-user state is stored.
#
# @return [Pathname]
def self.user_data_path
# Use user spcified env var if available
path = ENV["VAGRANT_HOME"]
# On Windows, we default to the USERPROFILE directory if it
# is available. This is more compatible with Cygwin and sharing
# the home directory across shells.
if !path && ENV["USERPROFILE"]
path = "#{ENV["USERPROFILE"]}/.vagrant.d"
end
# Fallback to the default
path ||= "~/.vagrant.d"
Pathname.new(path).expand_path
end
У будь-якому випадку, я вважаю, що найкращим способом є використання змінної середовища VAGRANT_HOME, у разі оновлення бродячої версії.
Ви можете використовувати цю функцію, наприклад:
disk_path = self.user_data_path().to_s