Sha256: 6c36c92cc9e9b928cbac2ba5fddb35388d1027ee17568b36bf71a9d55f048d5d
Contents?: true
Size: 641 Bytes
Versions: 3
Compression:
Stored size: 641 Bytes
Contents
# this is all to get vagrant working with capistrano vagrant_gem = `gem which vagrant`.chomp ssh_options[:keys] = File.expand_path('../../keys/vagrant', vagrant_gem) ssh_options[:paranoid] = false ssh_options[:keys_only] = true ssh_options[:user_known_hosts_file] = [] ssh_options[:config] = false set :user, 'vagrant' $:.unshift File.expand_path('../../../lib', __FILE__) # in your Capfile, this would likely be "require 'rubygems'" require 'supply_drop' set :puppet_destination, "~/supply_drop" set :puppet_command, "puppet" set :puppet_stream_output, true server '33.33.33.10', :web, :app role :db, '33.33.33.11', :nopuppet => true
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
supply_drop-0.7.0 | examples/vagrant/Capfile |
supply_drop-0.6.1 | examples/vagrant/Capfile |
supply_drop-0.6.0 | examples/vagrant/Capfile |