diff options
Diffstat (limited to 'bin/wait-online')
| -rwxr-xr-x | bin/wait-online | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/wait-online b/bin/wait-online deleted file mode 100755 index 7ad52e1..0000000 --- a/bin/wait-online +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -trap '{ exit 0; }' INT - -while true; do - ping -c3 "${1:-gentoo.org}" && - env BEEP_MSG="online again" beep && - break - sleep 1 -done |