summary refs log tree commit diff
path: root/bin/wait-online
blob: 7ad52e1f4c8ee208c46b6c56d3ef899f6a095ea5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

trap '{ exit 0; }' INT

while true; do
	ping -c3 "${1:-gentoo.org}" &&
		env BEEP_MSG="online again" beep &&
		break
	sleep 1
done