#!/bin/bash
readonly HOSTNAME=fey.crystalfaeries.net
readonly TIMEOUT=2

for i in {1..5}; do 
    echo "i: $i"
    if ping -c 1 -w "$TIMEOUT" "$HOSTNAME"	\
1>>	/tmp/ping.1.txt				\
2>>	/tmp/ping.2.txt
	then
        exit 0
    fi
done

exit 1
