diff options
Diffstat (limited to 'www-apps/bugzilla/files/3.4/reconfig')
-rw-r--r-- | www-apps/bugzilla/files/3.4/reconfig | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/www-apps/bugzilla/files/3.4/reconfig b/www-apps/bugzilla/files/3.4/reconfig deleted file mode 100644 index 71b0acea2585..000000000000 --- a/www-apps/bugzilla/files/3.4/reconfig +++ /dev/null @@ -1,19 +0,0 @@ -#!/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 |