diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-09-15 18:50:32 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-09-15 18:50:32 +0200 |
commit | c3eee8e333866d92e5fd94ae83cef618758c11bb (patch) | |
tree | 234a06fd90bd61a6668490a0cbf8870e6c674b81 /fics_autorun.sh |
FICS RPBLC v1.4.61.4.6
Diffstat (limited to 'fics_autorun.sh')
-rwxr-xr-x | fics_autorun.sh | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/fics_autorun.sh b/fics_autorun.sh new file mode 100755 index 0000000..759cbcb --- /dev/null +++ b/fics_autorun.sh @@ -0,0 +1,51 @@ +#!/bin/sh +# SPDX-FileCopyrightText: 2024 Markus Uhlin <maxxe@rpblc.net> +# SPDX-License-Identifier: ISC +# +# This script is suitable to be run as a cron job for the dedicated +# chess user. + +# You need to change these variables if FICS was built with a +# non-standard home location. +FICS_LOCKFILE=/home/chess/config/fics.pid +FICS_PROG=/home/chess/bin/fics + +run_fics() +{ + if [ -x ${FICS_PROG} ]; then + ${FICS_PROG} -d || exit 1 + exit 0 + else + echo "cannot find the program" + exit 1 + fi +} + +if [ -r $FICS_LOCKFILE ]; then + PID="$(cat $FICS_LOCKFILE)" + + case "$PID" in + ""|*[!0-9]*) + echo "pid not numeric" + exit 1 + ;; + *) + ;; + esac + + if [ ${#PID} -gt 20 ]; then + echo "pid too long" + exit 1 + fi + + if ps -p "$PID" > /dev/null; then + # already running (good) + exit 0 + else + echo "$PID not running. restarting..." + rm -f $FICS_LOCKFILE + run_fics + fi +else + run_fics +fi |