Sha256: 3b6dc9ba7c038692693431463dc956b30cd4514b1f99b3572addf09f63f4144b

Contents?: true

Size: 387 Bytes

Versions: 2

Compression:

Stored size: 387 Bytes

Contents

require "vagrant-shell"
require "vagrant-shell/ssh-agent"

VagrantPlugins::Shell::Plugin.make_provider(:self)

Vagrant.configure("2") do |config|
  config.vm.box = "vagrant-shell"
  config.ssh.username = ENV['LOGNAME']

  config.vm.provider :self do |shell, override|
    shell.image = 'localhost'
    shell.script = File.expand_path("../../../libexec/shell-static", __FILE__)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-shell-0.2.9 demo/self/Vagrantfile
vagrant-shell-0.2.8 demo/self/Vagrantfile