From c3eee8e333866d92e5fd94ae83cef618758c11bb Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Mon, 15 Sep 2025 18:50:32 +0200 Subject: FICS RPBLC v1.4.6 --- fics_autorun.sh | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100755 fics_autorun.sh (limited to 'fics_autorun.sh') 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 +# 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 -- cgit v1.2.3