Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Vagrant Parallels | 965 | 3 | 3 days ago | 80 | August 18, 2021 | 8 | mit | Ruby | ||
Vagrant Parallels Provider | ||||||||||
Landrush | 669 | 5 | 3 years ago | 38 | May 06, 2019 | 54 | mit | Ruby | ||
A Vagrant plugin that provides a simple DNS server for Vagrant guests | ||||||||||
Vagrant Proxyconf | 494 | 5 | 2 years ago | 34 | July 03, 2020 | 18 | mit | Ruby | ||
Vagrant plugin that configures the virtual machine to use proxies | ||||||||||
Awesome Vagrant | 484 | 2 years ago | 2 | |||||||
A curated list of awesome Vagrant resources, plugins, tutorials and other nice things. | ||||||||||
Vagrant Bindfs | 444 | 7 | 19 days ago | 54 | September 21, 2021 | mit | Ruby | |||
A Vagrant plugin to automate bindfs mount in the VM | ||||||||||
Vagrant Disksize | 407 | 2 | 4 years ago | 4 | October 26, 2018 | 24 | mit | Ruby | ||
Vagrant plugin to resize disks in VirtualBox | ||||||||||
Vagrant Vbox Snapshot | 383 | 15 | 7 years ago | 10 | November 24, 2015 | 8 | mit | Ruby | ||
Vagrant plugin that wraps "VBoxManage snapshot" | ||||||||||
Vagrant Vmware Esxi | 359 | 9 months ago | 37 | July 02, 2022 | 5 | gpl-3.0 | Ruby | |||
A Vagrant plugin that adds a vmware ESXi provider support. | ||||||||||
Jenkins Bootstrap Shared | 307 | 2 months ago | 2 | apache-2.0 | Groovy | |||||
Jenkins as immutable infrastructure made easy. A repository of shared scripts meant to be used as a git submodule. Packing Jenkins, plugins, and scripts into immutable packages and images. | ||||||||||
Wpdistillery | 274 | 4 years ago | 3 | other | Shell | |||||
WordPress Setup runner for Scotch Box |
A vagrant plugin that uses notify-forwarder to forward file system events from the host to the guest automatically on all shared folders.
This is useful for auto reloading file systems that rebuild when files change. Normally, they have to use CPU intensive polling when watching shared folders. This plugin makes them able to use inotify or similar for improved performance and reduced CPU usage.
$ vagrant plugin install vagrant-notify-forwarder
$ vagrant reload
By default, this sets up UDP port 29324 for port forwarding. If you're already using this port, or
if you want to change it, add the following line to your Vagrantfile
:
config.notify_forwarder.port = 22020 # Or your port number
The server and guest binaries will be automatically downloaded from the notify-forwarder repo's releases and verified with SHA256.
The client in the guest OS will run as root by default, assuming passwordless sudo
works. If this
does not work, you can disable privilege escalation in your Vagrantfile
:
config.notify_forwarder.run_as_root = false
To conserve size and dependencies, the plugin downloads binaries for supported platforms. This
plugin supports the same host/guest platforms as notify-forwarder
itself:
If you're running an unsupported host or guest and want to disable this plugin for a specific
machine, add the following line to your Vagrantfile
:
config.notify_forwarder.enable = false