Skip to content
Snippets Groups Projects
Commit 8e7b3561 authored by Nikolaus Krismer's avatar Nikolaus Krismer
Browse files

added virutal machine name (prevents auto-creation with timestamp)

parent 7e8d9701
No related branches found
No related tags found
Loading
......@@ -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"
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment