diff --git a/Vagrantfile b/Vagrantfile index ffae10f3b530614d980166d01097d78667a203da..d470e056ebe5fc70cd9697b13882b9eee1a87955 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -20,6 +20,13 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.cache.enable :yum end + # VM name + if isLocalMode + config.name = "isochrone" + else + config.name = "isochrone-local" + end + # Information about the box itself (name and url) # config.vm.box = "fedora19-x86_64" # config.vm.box_url = "http://www.krismer.de/files/VM/fedora19-x86_64.box" diff --git a/etc/vagrant/Vagrantfile b/etc/vagrant/Vagrantfile index 2ba4570ff507bca17c9c770160ba55bda3c245ca..7077226be66cf2087ff1c895ead58b87b7eb7b66 100644 --- a/etc/vagrant/Vagrantfile +++ b/etc/vagrant/Vagrantfile @@ -10,6 +10,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.cache.enable :yum end + config.name = "isochrone" + # Information about the box itself (name and url) # config.vm.box = "fedora19-x86_64" # config.vm.box_url = "http://www.krismer.de/files/VM/fedora19-x86_64.box"