2016-02-11 20:27:41 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
## this script takes a backup of a turn.
|
|
|
|
## usage: backup.sh <turn>
|
|
|
|
|
|
|
|
if [ -z $ERESSEA ]; then
|
|
|
|
echo "You have to define the \$ERESSEA environment variable to run $0"
|
|
|
|
exit -2
|
|
|
|
fi
|
|
|
|
source $HOME/bin/functions.sh
|
|
|
|
|
|
|
|
GAME=$1
|
|
|
|
EMAIL=$2
|
|
|
|
FACTION=$3
|
|
|
|
PASSWD=$4
|
2016-10-05 09:30:17 +02:00
|
|
|
#echo "$GAME $EMAIL $FACTION $PASSWD" >> /tmp/report.log
|
2016-02-11 20:27:41 +01:00
|
|
|
|
|
|
|
function reply() {
|
|
|
|
echo $@ | mutt -s "Reportnachforderung Partei ${FACTION}" $EMAIL
|
|
|
|
abort $@
|
|
|
|
}
|
|
|
|
|
|
|
|
LOCKFILE=$ERESSEA/.report.lock
|
|
|
|
[ -e $LOCKFILE ] && reply "lockfile exists. wait for mail delivery to finish."
|
|
|
|
|
|
|
|
REPLYTO='accounts@eressea.de'
|
|
|
|
|
|
|
|
echo `date`:report:$GAME:$EMAIL:$FACTION:$PASSWD >> $ERESSEA/request.log
|
|
|
|
|
|
|
|
cd $ERESSEA
|
|
|
|
checkpasswd.py game-$GAME/passwd $FACTION $PASSWD || reply "Das Passwort fuer die Partei $FACTION ist ungueltig"
|
|
|
|
|
|
|
|
cd $ERESSEA/game-$GAME/reports
|
|
|
|
if [ ! -e ${FACTION}.sh ]; then
|
|
|
|
echo "Der Report für Partei $FACTION kann wegen technischer Probleme leider nicht nachgefordert werden: No such file ${FACTION}.sh" \
|
|
|
|
| mutt -s "Reportnachforderung Partei ${FACTION}" $EMAIL
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
source ${FACTION}.sh $EMAIL || reply "Unbekannte Partei $FACTION"
|
|
|
|
|