]> Sergey Matveev's repositories - sgmon.git/blob - helper/ping
2582dbe34639d53611b5456cfc4541aca2f0c3b0
[sgmon.git] / helper / ping
1 #!/bin/sh -e
2
3 proto=$1
4 shift
5 if ping -${proto} -c 1 $@ > state/ping-out ; then
6     tail -1 < state/ping-out
7 else
8     cat state/ping-out
9     exit 1
10 fi