Sha256: e16be8cb01cc699ca0633f71ab13f16b89221142aefeb297747e0e67eaa476f4

Contents?: true

Size: 900 Bytes

Versions: 72

Compression:

Stored size: 900 Bytes

Contents

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

set :backend, :ssh

def vagrant(cmd)
  env = {"VAGRANT_CWD" => File.dirname(__FILE__)}
  system(env, "vagrant #{cmd}")
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

72 entries across 72 versions & 3 rubygems

Version Path
itamae-1.9.4 spec/integration/spec_helper.rb
itamae-mitsurin-0.4 spec/integration/spec_helper.rb
itamae-mitsurin-0.3 spec/integration/spec_helper.rb
itamae-mitsurin-0.2 spec/integration/spec_helper.rb
itamae-mitsurin-0.1 spec/integration/spec_helper.rb
itamae-1.9.3 spec/integration/spec_helper.rb
itamae-1.9.2 spec/integration/spec_helper.rb
itamae-1.9.1 spec/integration/spec_helper.rb
itamae-1.9.0 spec/integration/spec_helper.rb
itamae-1.8.0 spec/integration/spec_helper.rb
itamae-1.7.0 spec/integration/spec_helper.rb
itamae-1.7.0.pre spec/integration/spec_helper.rb