#!/bin/sh
CONF=$1
NEWROOT=$2
sed -e "s|^DocumentRoot.*$|DocumentRoot      = $NEWROOT|" $CONF > tmp.conf
mv -f tmp.conf $CONF

