server/process/cron/orders.cron
Enno Rehling a3ebddeae4 update cron to check environment for switches
use server/bin instead of ~/bin
2017-05-26 13:52:55 +02:00

20 lines
485 B
Bash
Executable file

#!/bin/bash
## this script processes incoming order files.
# files are delivered into an incoming queue by procmail, then cron runs
# this here script to make a non-blocking syntax check and reject or
# accept the order file.
if [ "yes" != "$CONFIRM" ] ; then
exit
fi
for GAME in $*
do
if [ "$GAME" == "eressea" ]; then GAME=2 ; fi
if [ "$GAME" == "e3a" ]; then GAME=3 ; fi
if [ -e $HOME/eressea/game-$GAME/orders.queue ]
then
$HOME/bin/orders-process $GAME
fi
done