Sha256: 570aabec15b2fdbe1db202f5fc807bd9439c277c20cc5d893f8415ce775ce8a3

Contents?: true

Size: 630 Bytes

Versions: 97

Compression:

Stored size: 630 Bytes

Contents

test_name 'test generic installers'

confine :except, :platform => /^windows|osx/

step 'install arbitrary msi via url' do
  hosts.each do |host|
    if host['platform'] =~ /win/
      # this should be implemented at the host/win/pkg.rb level someday
      generic_install_msi_on(host, 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi', {}, {:debug => true})
    end
  end
end

step 'install arbitrary dmg via url' do
  hosts.each do |host|
    if host['platform'] =~ /osx/
      host.generic_install_dmg('https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.dmg', 'Vagrant', 'Vagrant.pkg')
    end
  end
end

Version data entries

97 entries across 97 versions & 1 rubygems

Version Path
beaker-4.11.0 acceptance/tests/install/from_file.rb
beaker-4.10.0 acceptance/tests/install/from_file.rb
beaker-4.9.0 acceptance/tests/install/from_file.rb
beaker-4.8.0 acceptance/tests/install/from_file.rb
beaker-4.7.0 acceptance/tests/install/from_file.rb
beaker-4.6.0 acceptance/tests/install/from_file.rb
beaker-4.5.0 acceptance/tests/install/from_file.rb
beaker-4.4.0 acceptance/tests/install/from_file.rb
beaker-4.3.0 acceptance/tests/install/from_file.rb
beaker-4.2.0 acceptance/tests/install/from_file.rb
beaker-4.1.0 acceptance/tests/install/from_file.rb
beaker-4.0.0 acceptance/tests/install/from_file.rb
beaker-3.37.0 acceptance/tests/install/from_file.rb
beaker-3.36.0 acceptance/tests/install/from_file.rb
beaker-3.35.0 acceptance/tests/install/from_file.rb
beaker-3.34.0 acceptance/tests/install/from_file.rb
beaker-3.33.0 acceptance/tests/install/from_file.rb
beaker-3.32.0 acceptance/tests/install/from_file.rb
beaker-3.31.0 acceptance/tests/install/from_file.rb
beaker-3.30.0 acceptance/tests/install/from_file.rb