Ein anderer Ort (der Stammort, an dem ENV-Variablen gelesen werden) befindet sich in shared_helpers.rb, Zeile 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
Ich denke, der beste Weg ist, die Umgebungsvariable VAGRANT_HOME zu verwenden, falls die Version aktualisiert wird.
Sie können diese Funktion wie folgt verwenden:
disk_path = self.user_data_path().to_s