Vagrant::Notify

Build Status Code Climate

A Vagrant plugin that forwards notify-send from guest to host machine, tested using Ubuntu as guest and host machine.

Installation

Make sure you have Vagrant >= 1.1 around and run:

$ vagrant plugin install vagrant-notify

Usage

After installing the gem, whenever you run vagrant up, a Ruby TCPServer will fire up on 8081 port and a script will be installed on the guest machine to replace the original notify-send command.

If by any chance your IP changes, you can run vagrant provision in order to update the guest script with the new IP.

As of now, the plugin is not supported on multi vm environments, it used to be for the Vagrant < 1.1 version and I'm planning to fix that as soon as I have a chance.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request