arch-maride-flavour/checks/internet.check

13 lines
350 B
Plaintext
Raw Normal View History

2017-07-30 20:19:24 +00:00
#!/bin/sh
2017-07-30 20:51:32 +00:00
ping -c 1 archlinux.org 2>/tmp/arch-maride-flavour_checks_internet_error.log 1>/tmp/arch-maride-flavour_checks_internet_out.log
2017-07-30 20:19:24 +00:00
return=$?
if [ "$return" -eq 0 ]; then
amf_return=0
2017-07-30 20:19:24 +00:00
else
echo "~> Either internet is unavailable or archlinux.org is down..."
echo "~> (ping returned $return. Maybe check the logs in /tmp."
amf_return=1
2017-07-30 20:19:24 +00:00
fi