1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#!/bin/bash die() { echo "#####" echo $1 echo "#####" exit 1 } if [ $1 = "install" ]; then sed -e "s|/usr/lib/mod_survey/webroot/|${MY_INSTALLDIR}/|g s|\"/mod_survey/\"|\"${VHOST_APPDIR}/\"| s|Alias|#Alias|" -i ${VHOST_ROOT}/${PN}/survey.conf || die elif [ $1 = "clean" ]; then echo $1 fi