Sha256: eb274d442ee7899cf86d89a58c6b7cb1a444671df921cf03b2180579efe4de65
Contents?: true
Size: 1022 Bytes
Versions: 1
Compression:
Stored size: 1022 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.box = "tknerr/managed-server-dummy" <% config[:provisioners].each do |provisioner| -%> <% if provisioner == 'shell' -%> <% config[:shell_paths].each do |path| -%> config.vm.provision 'shell', path: '<%= path %>' <% end -%> <% end -%> <% end -%> <% if config[:communicator] == 'winrm' -%> config.vm.communicator = '<%= config[:communicator] %>' config.vm.winrm.username = '<%= config[:winrm_username] %>' config.vm.winrm.password = '<%= config[:winrm_password] %>' <% end -%> instances = File.readlines('Catfishfile.lock').map(&:chomp) instances.each do |instance| config.vm.define "#{instance}" do |box| box.vm.provider :managed do |managed, override| managed.server = instance <% if config[:communicator] == 'ssh' -%> override.ssh.username = '<%= config[:ssh_username] %>' override.ssh.private_key_path = '<%= config[:ssh_private_key_path] %>' <% end -%> end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
catfish-0.0.3 | lib/catfish/templates/Vagrantfile.tt |