Sha256: e503f3aa942a2ac56b97931529953c43a34978ad584f56a8361b4d06a8eb5168
Contents?: true
Size: 534 Bytes
Versions: 381
Compression:
Stored size: 534 Bytes
Contents
class Specinfra::Command::Windows::Base::Port < Specinfra::Command::Windows::Base class << self def check_is_listening(port, options=nil) Backend::PowerShell::Command.new do using 'is_port_listening.ps1' exec "IsPortListening -portNumber #{port}" end end def check_is_listening_with_protocol(port, protocol) Backend::PowerShell::Command.new do using 'is_port_listening.ps1' exec "IsPortListening -portNumber #{port} -protocol '#{protocol}'" end end end end
Version data entries
381 entries across 381 versions & 3 rubygems