Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Modify readme
  • Loading branch information
Ethan Lynn committed Jan 10, 2017
commit dd6526740b9fe28b3394cf0ee89b1847c94b9199
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ Install using standard Vagrant plugin method:
vagrant plugin install vagrant-vsphere
```

Install this **hacked** vagrant plugin:

```bash
./tools/reinstall.sh
```

This will install the plugin from RubyGems.org.

Alternatively, you can clone this repository and build the source with `gem
Expand Down
4 changes: 3 additions & 1 deletion tools/reinstall.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash

vagrant plugin uninstall vagrant-vsphere
if [ -n "$(vagrant plugin list |grep vagrant-vsphere)" ]; then
vagrant plugin uninstall vagrant-vsphere
fi
rm -f *.gem
gem build vSphere.gemspec
vagrant plugin install vagrant-vsphere --plugin-source file://vagrant-vsphere-1.11.0.gem