No release in over a year
A Vagrant plugin that can be used when provisioning/communicating/ssh for the guest VM is not needed (e.g. PXE boot).
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
>= 0
 Project Readme

vagrant-dummy-communicator

vagrant-dummy-communicator is a Vagrant plugin which disables communication with the guest VM, and allows Vagrant to continue without waiting for SSH/WinRM to be ready.

Installation

Requires vagrant 1.3 or later

Vagrant ≥ 1.3

vagrant plugin install vagrant-dummy-communicator

Configuration / Usage

This plugin does not require it's own configuration. You do however need to enable it in your Vagrantfile:

Vagrant.configure("2") do |config|
  # Use an 'empty' box
  config.vm.box = "pace/empty"

  # Disable shared folders
  config.vm.synced_folder ".", "/vagrant", disabled: true

  # Set dummy communicator
  config.vm.communicator = "dummy"
end

Now you can do vagrant up --no-provision to bring up your VM.

See: vagrant-empty-box for a more extensive example.