inne miejsce (główne miejsce, w którym odczytuje zmienne ENV) znajduje się w shared_helpers.rb, wiersz 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
W każdym razie, myślę, że najlepszym sposobem jest użycie zmiennej środowiskowej VAGRANT_HOME, w przypadku aktualizacji wersji włóczęgów.
Możesz użyć tej funkcji na przykład:
disk_path = self.user_data_path().to_s