Sha256: 2d1e1a16bee5f162fedf4737e12a1a332098356534506b287187c9b68fd1ba1e

Contents?: true

Size: 948 Bytes

Versions: 130

Compression:

Stored size: 948 Bytes

Contents

require 'serverspec'
require 'net/ssh'
require 'tempfile'

set :backend, :ssh

def vagrant(cmd)
  Bundler.with_clean_env do
    env = {"VAGRANT_CWD" => File.dirname(__FILE__)}
    system env, "/usr/bin/vagrant #{cmd}"
  end
end

if ENV['ASK_SUDO_PASSWORD']
  begin
    require 'highline/import'
  rescue LoadError
    fail "highline is not available. Try installing it."
  end
  set :sudo_password, ask("Enter sudo password: ") { |q| q.echo = false }
else
  set :sudo_password, ENV['SUDO_PASSWORD']
end

host = ENV['TARGET_HOST']

config = Tempfile.new('', Dir.tmpdir)
vagrant "ssh-config #{host} > #{config.path}"

options = Net::SSH::Config.for(host, [config.path])

options[:user] ||= Etc.getlogin

set :host,        options[:host_name] || host
set :ssh_options, options

# Disable sudo
# set :disable_sudo, true

# Set environment variables
# set :env, :LANG => 'C', :LC_MESSAGES => 'C' 

# Set PATH
# set :path, '/sbin:/usr/local/sbin:$PATH'

Version data entries

130 entries across 130 versions & 1 rubygems

Version Path
itamae-1.6.3 spec/integration/spec_helper.rb
itamae-1.6.2 spec/integration/spec_helper.rb
itamae-1.6.1 spec/integration/spec_helper.rb
itamae-1.6.0 spec/integration/spec_helper.rb
itamae-1.5.2 spec/integration/spec_helper.rb
itamae-1.5.1 spec/integration/spec_helper.rb
itamae-1.5.0 spec/integration/spec_helper.rb
itamae-1.4.5 spec/integration/spec_helper.rb
itamae-1.4.4 spec/integration/spec_helper.rb
itamae-1.4.3 spec/integration/spec_helper.rb
itamae-1.4.2 spec/integration/spec_helper.rb
itamae-1.4.1 spec/integration/spec_helper.rb
itamae-1.4.0 spec/integration/spec_helper.rb
itamae-1.3.6 spec/integration/spec_helper.rb
itamae-1.3.5 spec/integration/spec_helper.rb
itamae-1.3.4 spec/integration/spec_helper.rb
itamae-1.3.3 spec/integration/spec_helper.rb
itamae-1.3.2 spec/integration/spec_helper.rb
itamae-1.3.1 spec/integration/spec_helper.rb
itamae-1.3.0 spec/integration/spec_helper.rb