Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/phinze/vagrant-host-shell

simple vagrant provisioner that executes commands on the host
https://github.com/phinze/vagrant-host-shell

Last synced: about 2 months ago
JSON representation

simple vagrant provisioner that executes commands on the host

Awesome Lists containing this project

README

        

# vagrant-host-shell plugin

a vagrant provisioner to run commands on the host when a VM boots.

simple example based on question asked [on vagrant mailing list](https://groups.google.com/forum/#!topic/vagrant-up/CsNx-FErplY)

## example usage

Install as a plugin:

```
vagrant plugin install vagrant-host-shell
```

Add this to `Vagrantfile`:

```ruby
config.vm.provision :host_shell do |host_shell|
host_shell.inline = 'touch /tmp/hostshell-works && echo hello from the host && hostname 1>&2'
end
```

Run `vagrant up` (or `vagrant provision` if machine is already running.)

Observe that `/tmp/hostshell-works` is present on your host, and that the provisioner output:

```
[stdout] hello from the host
[stderr] (your host's hostname)
```