un autre emplacement (l'emplacement racine où sont lues les variables ENV) se trouve dans shared_helpers.rb, ligne 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
Quoi qu'il en soit, je pense que le meilleur moyen consiste à utiliser la variable d'environnement VAGRANT_HOME, en cas de mise à niveau de version vagabonde.
Vous pouvez utiliser cette fonction comme:
disk_path = self.user_data_path().to_s