Sha256: bd958535958a4ec92741f80f076c049d49efcc3094072819d0b5e18512cf4484
Contents?: true
Size: 463 Bytes
Versions: 111
Compression:
Stored size: 463 Bytes
Contents
class Specinfra::Command::Openbsd::Base::Port < Specinfra::Command::Base::Port class << self def check_is_listening(port, opts={}) protocol = opts[:protocol] case protocol when 'tcp' return "netstat -nat -f inet | egrep '(tcp.*.#{port}.*LISTEN$)'" when 'udp' return "netstat -nat -f inet | egrep '(udp.*.#{port}.*$)'" end "netstat -nat -f inet | egrep '((tcp|udp).*\.#{port}.*LISTEN$)'" end end end
Version data entries
111 entries across 111 versions & 1 rubygems