Post
Topic
Board Pools
Re: [25+PH] KanoPool kano.is NO FEE TIL 2018 PPLNS US,DE,SG,JP,NL,NYA 🐈
by
kano
on 19/12/2017, 04:42:31 UTC
I'd suggest to try:

Code:
#!/bin/bash
#
ok="`ping -c 2 google.com 2>&1`"
res="$?"
if [ "$res" != "0" ] ; then
 sleep 10
 ok2="`ping -c 2 google.com 2>&1`"
 res2="$?"
 if [ "$res2" != "0" ] ; then
  echo "Failed twice ... res=$res res2=$res2 ..."
  echo -e "Ping1:\n$ok"
  echo -e "Ping2:\n$ok2"
  .... your preferred restart ...
 fi
fi