Sha256: d692bc67ff851291d380fc40186f6c9eae3887ee2e2b017ee26c643fee472bac
Contents?: true
Size: 461 Bytes
Versions: 381
Compression:
Stored size: 461 Bytes
Contents
class Specinfra::Command::Solaris::Base::Port < Specinfra::Command::Base::Port class << self def check_is_listening(port, opts=nil) regexp = "\\.#{port} " "netstat -an 2> /dev/null | grep -- LISTEN | grep -- #{escape(regexp)}" end def check_is_listening_with_protocol(port, protocol) regexp = ".*\\.#{port} " "netstat -an -P #{escape(protocol)} 2> /dev/null | grep -- LISTEN | grep -- #{escape(regexp)}" end end end
Version data entries
381 entries across 381 versions & 3 rubygems
Version | Path |
---|---|
specinfra-2.0.0.beta16 | lib/specinfra/command/solaris/base/port.rb |