0db4d2dccd
* Add support for running a cloud backup immediately after exiting a game. (GAME SETTINGS, Requires configured rclone.)
20 lines
327 B
Bash
Executable file
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
|