Sha256: 93a540c1255a1d4413b7e5f567769529c7faf11d173a3de0f7f970b6b89f9902

Contents?: true

Size: 720 Bytes

Versions: 7

Compression:

Stored size: 720 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
set :puppet_syntax_check, false
set :puppet_write_to_file, "puppet_output.txt"

server '33.33.33.10', :web, :app
role :db,  '33.33.33.11', :nopuppet => true

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
supply_drop-0.11.0 examples/vagrant/Capfile
supply_drop-0.10.2 examples/vagrant/Capfile
supply_drop-0.10.1 examples/vagrant/Capfile
supply_drop-0.10.0 examples/vagrant/Capfile
supply_drop-0.9.0 examples/vagrant/Capfile
supply_drop-0.8.1 examples/vagrant/Capfile
supply_drop-0.8.0 examples/vagrant/Capfile