Method: #broadcast_ping

Defined in:
lib/vagrant-subutai/packer/subutai_net.rb

#broadcast_ping(count) ⇒ Object



56
57
58
59
60
61
# File 'lib/vagrant-subutai/packer/subutai_net.rb', line 56

def broadcast_ping(count)
  system("ping -n #{count} #{broadcast_addr} >/dev/null")   \
    if (RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/)
  system("ping -c #{count} #{broadcast_addr} >/dev/null")   \
    if (RbConfig::CONFIG['host_os'] =~ /darwin|linux/)
end