README.md in vagrant-guests-openbsd-0.0.2 vs README.md in vagrant-guests-openbsd-0.0.3

- old
+ new

@@ -1,10 +1,10 @@ [![Build Status](https://secure.travis-ci.org/nabeken/vagrant-guests-openbsd.png)](http://travis-ci.org/nabeken/vagrant-guests-openbsd) # vagrant-guests-openbsd -Vagrant 1.1 has a build-in OpenBSD plugin but the plugin lacks multiple network and nfs mount support. +Vagrant >= 1.1 has a built-in OpenBSD plugin but the plugin lacks multiple network and nfs mount support. This plugins allows you to run OpenBSD under vagrant until Vagrant merges this changes. ## Installation @@ -20,11 +20,19 @@ # If you want hostonly network config.vm.network :private_network, ip: "192.168.67.10", netmask: "255.255.255.0" # If you want to mount folders with nfs config.vm.synced_folder "../", "/vagrant", :nfs => true + # If you want not to mount any folders, set :disabled => true + config.vm.synced_folder "../", "/vagrant", :disabled => true # other config # ... end -You shoud use ':openbsd\_v2' for 'config.vm.guest' to avoid name conflict with build-in plugin. +You shoud use ':openbsd\_v2' for 'config.vm.guest' to avoid name conflict with built-in plugin. + +# ChangeLog + +## 0.0.3 (2013-08-03) + + * Add Vagrant 1.2.7 support