Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kanzure/vagrant-plugin-dummy
dummy plugin for any vagrant guest
https://github.com/kanzure/vagrant-plugin-dummy
Last synced: 2 months ago
JSON representation
dummy plugin for any vagrant guest
- Host: GitHub
- URL: https://github.com/kanzure/vagrant-plugin-dummy
- Owner: kanzure
- Created: 2013-09-10T21:26:47.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-12T16:11:00.000Z (almost 11 years ago)
- Last Synced: 2024-10-11T20:43:02.020Z (3 months ago)
- Language: Ruby
- Size: 246 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
vagrant-plugin-dummy
==========================This is a "dummy guest" plugin for vagrant. This is useful if you want to only
use vagrant for creating and destroying clean guests.NOTE: This uses the provider to check if the guest is online before returning
to vagrant. This check only works with VirtualBox at the moment.Installing vagrant-plugin-dummy
==========================### Installing from source
```
bundle install
bundle exec rake
vagrant plugin install pkg/vagrant-plugin-dummy-0.0.2.gem
```Usage
==========================Add this to a Vagrantfile:
```
config.vm.guest :dummy
```and
```
config.vm.synced_folder ".", "/vagrant", :disabled => true
```