Sha256: 90e20b37d9093c489281520a9222cace960d722660bb0c07b6f67f21c64a0eec
Contents?: true
Size: 401 Bytes
Versions: 3
Compression:
Stored size: 401 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 = "provisioners/ansible/site.yml" end <% end %> end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
arkenstone-0.5.1 | templates/Vagrantfile.erb |
arkenstone-0.3.0 | templates/Vagrantfile.erb |
arkenstone-0.2.0 | lib/arkenstone/templates/Vagrantfile.erb |