Sha256: 107d9d15744c55f9dcd564cf4b92f0806d80402bfd5429fb6a0b2ef430045b87
Contents?: true
Size: 454 Bytes
Versions: 7
Compression:
Stored size: 454 Bytes
Contents
RSpec.configure do |config| config.before do host = 'node0.server1.test' if config.host != host config.disable_sudo = true config.ssh.close if config.ssh config.host = host options = Net::SSH::Config.for(config.host) options[:keys] = %w(~/.vagrant.d/insecure_private_key) options[:forward_agent] = true user = 'vagrant' config.ssh = Net::SSH.start(config.host, user, options) end end end
Version data entries
7 entries across 7 versions & 1 rubygems