Sha256: b2fe0e7250f8383ba45220143b6c255900b39a1c09561ba87695c0f6d9e00513
Contents?: true
Size: 537 Bytes
Versions: 4
Compression:
Stored size: 537 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' server '33.33.33.10', :web, :app role :db, '33.33.33.11', :nopuppet => true
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
supply_drop-0.5.0 | examples/vagrant/Capfile |
supply_drop-0.4.0 | examples/vagrant/Capfile |
supply_drop-0.3.0 | examples/vagrant/Capfile |
supply_drop-0.2.0 | examples/capistrano/Capfile |