Update CHANGELOG
This commit is contained in:
parent
bc4abbd8f2
commit
51d576e50d
|
@ -1,5 +1,7 @@
|
||||||
## 0.6.0 (unreleased)
|
## 0.6.0 (unreleased)
|
||||||
|
|
||||||
|
- VM name now defaults to the name of the containing folder, plus a timestamp.
|
||||||
|
This should make it easier to identify VMs in the VirtualBox GUI.
|
||||||
- Exposed Vagrant test helpers in `Vagrant::TestHelpers` for plugins to easily
|
- Exposed Vagrant test helpers in `Vagrant::TestHelpers` for plugins to easily
|
||||||
test themselves against Vagrant environments.
|
test themselves against Vagrant environments.
|
||||||
- **Plugins** have landed. Plugins are simply gems which have a `vagrant_init.rb`
|
- **Plugins** have landed. Plugins are simply gems which have a `vagrant_init.rb`
|
||||||
|
|
|
@ -27,6 +27,7 @@ Vagrant::Config.run do |config|
|
||||||
config.vm.system = :linux
|
config.vm.system = :linux
|
||||||
|
|
||||||
config.vm.customize do |vm|
|
config.vm.customize do |vm|
|
||||||
|
# Make VM name the name of the containing folder by default
|
||||||
vm.name = File.basename(File.expand_path("../", Vagrant.source_root)) + "_#{Time.now.to_i}"
|
vm.name = File.basename(File.expand_path("../", Vagrant.source_root)) + "_#{Time.now.to_i}"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue