Sha256: d516b5dfab8e9ce3d6fff4a25a5defe962201107f928a92f8db6739cfc0ddebb
Contents?: true
Size: 355 Bytes
Versions: 3
Compression:
Stored size: 355 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'vagrant-host-shell' Vagrant.configure("2") do |config| config.vm.box = "precise64" config.vm.provision :host_shell do |host_shell| host_shell.inline = 'touch /tmp/hostshell-works && echo hello from the host && hostname 1>&2' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-host-shell-0.0.4 | examples/Vagrantfile |
vagrant-host-shell-0.0.3 | examples/Vagrantfile |
vagrant-host-shell-0.0.2 | examples/Vagrantfile |