Sha256: 73e65e5272c162f9ace0dcd1512ff1f830ed9648f1c4f5957ced1668ffcf7b0b
Contents?: true
Size: 393 Bytes
Versions: 2
Compression:
Stored size: 393 Bytes
Contents
# -*- mode: ruby -*- Vagrant.configure(2) do |config| config.vm.box = "<%= options[:box] %>" config.vm.provider "<%= options[:provider] %>" config.vm.network "forwarded_port", guest: 3000, host: <%= options[:port] %> <% if options[:provisioner] == "ansible" %> config.vm.provision "ansible" do |ansible| ansible.playbook = "prov/ansible/site.yml" end <% end %> end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
arkenstone-0.6.0 | templates/Vagrantfile.erb |
arkenstone-0.5.2 | templates/Vagrantfile.erb |