You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apps/bugzilla/files/4.0/reconfig

20 lines
349 B

#!/bin/bash
FILE="bugzilla.cron.daily bugzilla.cron.tab"
function die ()
{
echo
echo "***"
echo "*** Fatal error: $*"
echo "***"
exit 1
}
if [ $1 = "install" ]; then
cd "${MY_INSTALLDIR}" || die "Cannot find install dir ${MY_INSTALLDIR}"
sed -e "s|/var/www/bugzilla|${MY_INSTALLDIR}|g" -i ${FILE} || die "sed failed"
else
echo "done."
fi