class Specinfra::Command::Solaris::Base::Host
Public Class Methods
check_is_reachable(host, port, proto, timeout)
click to toggle source
# File lib/specinfra/command/solaris/base/host.rb, line 3 def check_is_reachable(host, port, proto, timeout) if port.nil? "ping -n #{escape(host)} #{escape(timeout)}" else "nc -vvvvz#{escape(proto[0].chr)} -w #{escape(timeout)} #{escape(host)} #{escape(port)}" end end