2015-02-07 19:04:50 +01:00
|
|
|
#!/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.
|
|
|
|
|
2017-05-26 13:52:55 +02:00
|
|
|
if [ "yes" != "$CONFIRM" ] ; then
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2015-02-07 19:04:50 +01:00
|
|
|
for GAME in $*
|
|
|
|
do
|
2019-06-10 20:42:43 +02:00
|
|
|
$HOME/eressea/orders-php/check-orders.sh $GAME
|
2015-02-07 19:04:50 +01:00
|
|
|
done
|