File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -8,18 +8,22 @@ goes away when you run `vagrant destroy`.
8
8
## Install Vagrant
9
9
10
10
* NOTE* : The Vagrant gem (` gem install vagrant ` ) is
11
- [ no longer supported] ( https://www.vagrantup.com/docs/installation/ )
11
+ [ no longer supported] ( https://www.vagrantup.com/docs/installation/ ) . If you've
12
+ previously installed it, run ` gem uninstall vagrant ` . If you're an rbenv
13
+ user, you probably want to follow that up with ` rbenv rehash; hash -r ` .
12
14
13
15
If you use Homebrew on macOS:
14
16
``` bash
15
17
$ brew update
16
18
$ brew cask install virtualbox
17
19
$ brew cask install vagrant
18
20
$ brew cask install vagrant-manager
21
+ $ vagrant plugin install vagrant-vbguest
19
22
```
20
23
21
24
Installing Vagrant and virtualbox on other operating systems is left
22
- as an exercise to the reader.
25
+ as an exercise to the reader. Note the ` vagrant-vbguest ` plugin is required
26
+ to update the VirtualBox guest extensions in the guest VM image.
23
27
24
28
## Run the tests
25
29
@@ -54,3 +58,7 @@ $ time bundle exec rake
54
58
$ cd test/support/vm/openldap
55
59
$ vagrant destroy
56
60
```
61
+
62
+ If at any point your VM appears to have broken itself, ` vagrant destroy `
63
+ from the ` test/support/vm/openldap ` directory will blow it away. You can
64
+ then do ` vagrant up ` and start over.
You can’t perform that action at this time.
0 commit comments