server/process/cron/orders.cron

16 lines
345 B
Plaintext
Raw Normal View History

#!/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
2019-06-10 20:42:43 +02:00
$HOME/eressea/orders-php/check-orders.sh $GAME
done