Sha256: 90ec212d6088bbe9853bf754054a1f61746bbeda952e5a64ca9a567dca301d9d
Contents?: true
Size: 632 Bytes
Versions: 16
Compression:
Stored size: 632 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'].include?('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| host.generic_install_dmg('https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.dmg', 'Vagrant', 'Vagrant.pkg') if host['platform'].include?('osx') end end
Version data entries
16 entries across 16 versions & 1 rubygems