From 87a99d61b7bc1f428ce5917d353cbe3d815a2a1b Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sun, 4 Aug 2024 21:50:05 +0200 Subject: Autorun script -- initial revision --- fics_autorun.sh | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100755 fics_autorun.sh diff --git a/fics_autorun.sh b/fics_autorun.sh new file mode 100755 index 0000000..a3b4863 --- /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 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