distribution/packages/jelos/sources/scripts/amionline
fewtarius 0db4d2dccd
* Fix rclone on x86_64 builds
* Add support for running a cloud backup immediately after exiting a game. (GAME SETTINGS, Requires configured rclone.)
2022-10-28 17:37:37 -04:00

20 lines
327 B
Bash
Executable file

#!/bin/sh
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2020-present Fewtarius
ip route | awk '/default/ {print $3}' >/dev/null 2>&1
if [ ! $? = 0 ]
then
echo false
exit 1
else
ping www.google.com -c1 -w1 >/dev/null 2>&1
if [ ! $? = 0 ]
then
echo false
exit 1
else
echo true
exit 0
fi
fi