#!/bin/bash die() { echo "#####" echo $1 echo "#####" exit 1 } if [ $1 = "install" ]; then sed -e "s|../conf/|${VHOST_ROOT}/${PN}/conf/|g" -i ${MY_INSTALLDIR}/* || die sed -e "s|\$ROOT =\t\"\"|\$ROOT = \"${VHOST_ROOT}/${PN}/templates/\"|" -i ${MY_INSTALLDIR}/class.FastTemplate.php || die elif [ $1 = "clean" ]; then echo $1 fi