From 8e7b3561d61f3c2a2e5a8f1d46518ea79627d374 Mon Sep 17 00:00:00 2001
From: Nikolaus Krismer <niko@krismer.de>
Date: Sat, 24 May 2014 15:22:48 +0200
Subject: [PATCH] added virutal machine name (prevents auto-creation with
 timestamp)

---
 Vagrantfile             | 7 +++++++
 etc/vagrant/Vagrantfile | 2 ++
 2 files changed, 9 insertions(+)

diff --git a/Vagrantfile b/Vagrantfile
index ffae10f3..d470e056 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 2ba4570f..7077226b 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"
-- 
GitLab