Work on test fixtures:
- get rid both on bo and front of 2 fixtures files for documents
- correct dl_fixtures to reflect this
- upgrade mirage from 0.1.13 to 0.2.0
- download new version of documents fixtures including geo information
configfile="/etc/puppi/puppi.conf"
# Load general configurations
if [ ! -f $configfile ] ; then
echo "Config file: $configfile not found"
exit 2
else
. $configfile
. $scriptsdir/functions
fi
# Load project runtime configuration
projectconfigfile="$workdir/$project/config"
if [ ! -f $projectconfigfile ] ; then
echo "Project runtime config file: $projectconfigfile not found"
exit 2
else
. $projectconfigfile
fi
# Activate debug
case "$debug" in
yes) set -x ;;
full) set -xv ;;
esac