module Windows::Pkg

Public Instance Methods

check_for_command(name) click to toggle source
# File lib/beaker/host/windows/pkg.rb, line 4
def check_for_command(name)
  result = exec(Beaker::Command.new("which #{name}"), :accept_all_exit_codes => true)
  result.exit_code == 0
end
check_for_package(name) click to toggle source
# File lib/beaker/host/windows/pkg.rb, line 9
def check_for_package(name)
  result = exec(Beaker::Command.new("cygcheck #{name}"), :accept_all_exit_codes => true)
  result.exit_code == 0
end
determine_if_x86_64() click to toggle source

Examine the host system to determine the architecture, overrides default host determine_if_x86_64 so that wmic is used @return [Boolean] true if x86_64, false otherwise

# File lib/beaker/host/windows/pkg.rb, line 34
def determine_if_x86_64
  identify_windows_architecture.include?('64')
end
install_package(name, cmdline_args = '') click to toggle source
# File lib/beaker/host/windows/pkg.rb, line 14
def install_package(name, cmdline_args = '')
  arch = identify_windows_architecture

  if arch == '64'
    rootdir = "c:\\\\cygwin64"
    cygwin = "setup-x86_64.exe"
  else # 32 bit version
    rootdir = "c:\\\\cygwin"
    cygwin = "setup-x86.exe"
  end

  execute("#{cygwin} -q -n -N -d -R #{rootdir} -s http://cygwin.osuosl.org -P #{name} #{cmdline_args}")
end
uninstall_package(name, _cmdline_args = '') click to toggle source
# File lib/beaker/host/windows/pkg.rb, line 28
def uninstall_package(name, _cmdline_args = '')
  raise "Package #{name} cannot be uninstalled on #{self}"
end

Private Instance Methods

identify_windows_architecture() click to toggle source

@api private

# File lib/beaker/host/windows/pkg.rb, line 41
def identify_windows_architecture
  platform.arch.include?('64') ? '64' : '32'
end