summaryrefslogtreecommitdiffstats
path: root/server/gen_config.sh
blob: 4b5735373c396ebd5499d3ddae55d6809c774221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#/bin/sh

APACHECONF="apache-rteval.conf"
INSTALLDIR="$1"

echo "Creating Apache config file: apache-rteval.conf"
escinstpath="$(echo ${INSTALLDIR} | sed -e 's/\//\\\\\//g')"
expr=$(echo "s/{_INSTALLDIR_}/${escinstpath}/")
eval "sed -e ${expr} ${APACHECONF}.tpl" > ${APACHECONF}
echo "Copy the apache apache-rteval.conf into your Apache configuration"
echo "directory and restart your web server"
echo