Sha256: 6e45d360dd2663367834f3e5c7d7fb6245ae27be1aff22b57cb6adf006e68040
Contents?: true
Size: 398 Bytes
Versions: 2
Compression:
Stored size: 398 Bytes
Contents
require "vagrant-shell" require "vagrant-shell/ssh-agent" VagrantPlugins::Shell::Plugin.make_provider(:ec2) Vagrant.configure("2") do |config| config.vm.box = "vagrant-shell" config.ssh.username = "ubuntu" config.vm.provider :ec2 do |shell, override| shell.image = ENV['SHELL_IMAGE'] shell.script = shell.script = File.expand_path("../../../libexec/shell-ec2", __FILE__) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-shell-0.2.9 | demo/ec2/Vagrantfile |
vagrant-shell-0.2.8 | demo/ec2/Vagrantfile |