summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apps/bugzilla/files')
-rw-r--r--www-apps/bugzilla/files/2.20/apache.htaccess3
-rw-r--r--www-apps/bugzilla/files/2.20/bugzilla.cron.tab1
-rw-r--r--www-apps/bugzilla/files/2.22/apache.htaccess3
-rw-r--r--www-apps/bugzilla/files/2.22/bugzilla.cron.daily5
-rw-r--r--www-apps/bugzilla/files/2.22/bugzilla.cron.tab1
-rw-r--r--www-apps/bugzilla/files/2.22/postinstall-en.txt16
-rw-r--r--www-apps/bugzilla/files/2.22/reconfig19
-rw-r--r--www-apps/bugzilla/files/3.0/bugzilla.cron.daily5
-rw-r--r--www-apps/bugzilla/files/3.0/bugzilla.cron.tab1
-rw-r--r--www-apps/bugzilla/files/3.0/postinstall-en.txt12
-rw-r--r--www-apps/bugzilla/files/3.0/reconfig19
-rw-r--r--www-apps/bugzilla/files/4.0/bugzilla-queue.confd4
-rw-r--r--www-apps/bugzilla/files/4.0/bugzilla-queue.initd39
-rw-r--r--www-apps/bugzilla/files/4.0/bugzilla.cron.daily (renamed from www-apps/bugzilla/files/2.20/bugzilla.cron.daily)0
-rw-r--r--www-apps/bugzilla/files/4.0/bugzilla.cron.tab1
-rw-r--r--www-apps/bugzilla/files/4.0/postinstall-en.txt (renamed from www-apps/bugzilla/files/2.20/postinstall-en.txt)7
-rw-r--r--www-apps/bugzilla/files/4.0/reconfig (renamed from www-apps/bugzilla/files/2.20/reconfig)0
17 files changed, 48 insertions, 88 deletions
diff --git a/www-apps/bugzilla/files/2.20/apache.htaccess b/www-apps/bugzilla/files/2.20/apache.htaccess
deleted file mode 100644
index eb747223ccec..000000000000
--- a/www-apps/bugzilla/files/2.20/apache.htaccess
+++ /dev/null
@@ -1,3 +0,0 @@
-AddHandler cgi-script .cgi
-Options +Indexes +ExecCGI +FollowSymLinks
-DirectoryIndex index.cgi
diff --git a/www-apps/bugzilla/files/2.20/bugzilla.cron.tab b/www-apps/bugzilla/files/2.20/bugzilla.cron.tab
deleted file mode 100644
index 0ac2ef6d65a6..000000000000
--- a/www-apps/bugzilla/files/2.20/bugzilla.cron.tab
+++ /dev/null
@@ -1 +0,0 @@
-0 0 * * * /var/www/bugzilla/bugzilla.cron.daily
diff --git a/www-apps/bugzilla/files/2.22/apache.htaccess b/www-apps/bugzilla/files/2.22/apache.htaccess
deleted file mode 100644
index eb747223ccec..000000000000
--- a/www-apps/bugzilla/files/2.22/apache.htaccess
+++ /dev/null
@@ -1,3 +0,0 @@
-AddHandler cgi-script .cgi
-Options +Indexes +ExecCGI +FollowSymLinks
-DirectoryIndex index.cgi
diff --git a/www-apps/bugzilla/files/2.22/bugzilla.cron.daily b/www-apps/bugzilla/files/2.22/bugzilla.cron.daily
deleted file mode 100644
index e3e86589891d..000000000000
--- a/www-apps/bugzilla/files/2.22/bugzilla.cron.daily
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-cd /var/www/bugzilla/
-./collectstats.pl
-./whineatnews.pl
-echo "*** Bugzilla nighlty flush has done! ***"
diff --git a/www-apps/bugzilla/files/2.22/bugzilla.cron.tab b/www-apps/bugzilla/files/2.22/bugzilla.cron.tab
deleted file mode 100644
index 0ac2ef6d65a6..000000000000
--- a/www-apps/bugzilla/files/2.22/bugzilla.cron.tab
+++ /dev/null
@@ -1 +0,0 @@
-0 0 * * * /var/www/bugzilla/bugzilla.cron.daily
diff --git a/www-apps/bugzilla/files/2.22/postinstall-en.txt b/www-apps/bugzilla/files/2.22/postinstall-en.txt
deleted file mode 100644
index 9e7a6225d186..000000000000
--- a/www-apps/bugzilla/files/2.22/postinstall-en.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-0. Bugzilla has been installed into ${MY_INSTALLDIR}
-
-1. To finish the installation, please read
- http://www.bugzilla.org/docs/2.22/html/installation.html
- You will need to run ${MY_INSTALLDIR}/checksetup.pl
-
- IMPORTANT: If you have customized the values in your Status/Resolution
- field, you must edit checksetup.pl BEFORE YOU RUN IT. Please see the
- Release Notes for more details.
-
-2. Please read the Release Notes, especially if you are upgrading:
- http://www.bugzilla.org/releases/2.22/release-notes.html
-
-3. Please note that Apache2 sets AllowOverride None by default. You may have
- to edit it to process the .htaccess file provided by Bugzilla. Please see
- http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride for more info.
diff --git a/www-apps/bugzilla/files/2.22/reconfig b/www-apps/bugzilla/files/2.22/reconfig
deleted file mode 100644
index 71b0acea2585..000000000000
--- a/www-apps/bugzilla/files/2.22/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
diff --git a/www-apps/bugzilla/files/3.0/bugzilla.cron.daily b/www-apps/bugzilla/files/3.0/bugzilla.cron.daily
deleted file mode 100644
index e3e86589891d..000000000000
--- a/www-apps/bugzilla/files/3.0/bugzilla.cron.daily
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-cd /var/www/bugzilla/
-./collectstats.pl
-./whineatnews.pl
-echo "*** Bugzilla nighlty flush has done! ***"
diff --git a/www-apps/bugzilla/files/3.0/bugzilla.cron.tab b/www-apps/bugzilla/files/3.0/bugzilla.cron.tab
deleted file mode 100644
index 0ac2ef6d65a6..000000000000
--- a/www-apps/bugzilla/files/3.0/bugzilla.cron.tab
+++ /dev/null
@@ -1 +0,0 @@
-0 0 * * * /var/www/bugzilla/bugzilla.cron.daily
diff --git a/www-apps/bugzilla/files/3.0/postinstall-en.txt b/www-apps/bugzilla/files/3.0/postinstall-en.txt
deleted file mode 100644
index 2f1c1a34c5b9..000000000000
--- a/www-apps/bugzilla/files/3.0/postinstall-en.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-0. Bugzilla has been installed into ${MY_INSTALLDIR}
-
-1. To finish the installation, please read
- http://www.bugzilla.org/docs/3.0/html/installing-bugzilla.html
- You will need to run ${MY_INSTALLDIR}/checksetup.pl
-
-2. Please read the Release Notes, especially if you are upgrading:
- http://www.bugzilla.org/releases/3.0/release-notes.html
-
-3. Please note that Apache2 sets AllowOverride None by default. You may have
- to edit it to process the .htaccess file provided by Bugzilla. Please see
- http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride for more info.
diff --git a/www-apps/bugzilla/files/3.0/reconfig b/www-apps/bugzilla/files/3.0/reconfig
deleted file mode 100644
index 71b0acea2585..000000000000
--- a/www-apps/bugzilla/files/3.0/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
diff --git a/www-apps/bugzilla/files/4.0/bugzilla-queue.confd b/www-apps/bugzilla/files/4.0/bugzilla-queue.confd
new file mode 100644
index 000000000000..2eec355a0986
--- /dev/null
+++ b/www-apps/bugzilla/files/4.0/bugzilla-queue.confd
@@ -0,0 +1,4 @@
+#JOBQUEUE_USER=bugzilla
+#JOBQUEUE_GROUP=bugzilla
+
+JOBQUEUE_PATH=/var/www/bugzilla/jobqueue.pl
diff --git a/www-apps/bugzilla/files/4.0/bugzilla-queue.initd b/www-apps/bugzilla/files/4.0/bugzilla-queue.initd
new file mode 100644
index 000000000000..118f738b8073
--- /dev/null
+++ b/www-apps/bugzilla/files/4.0/bugzilla-queue.initd
@@ -0,0 +1,39 @@
+#!/sbin/runscript
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/bugzilla/files/4.0/bugzilla-queue.initd,v 1.1 2011/06/17 10:38:41 idl0r Exp $
+
+PIDFILE="/var/run/bugzilla/${SVCNAME}.pid"
+JOBQUEUE_USER=${JOBQUEUE_USER:-root}
+JOBQUEUE_GROUP=${JOBQUEUE_GROUP:-root}
+
+checkconfig() {
+ [[ -z "${JOBQUEUE_USER}" || -z "$(getent passwd ${JOBQUEUE_USER})" ]] && { eerror "JOBQUEUE_USER not set or doesn't exist"; return 1; }
+ [[ -z "${JOBQUEUE_GROUP}" || -z "$(getent group ${JOBQUEUE_GROUP})" ]] && { eerror "JOBQUEUE_GROUP not set or doesn't exist"; return 1; }
+ [[ -z "${JOBQUEUE_PATH}" && ! -x "${JOBQUEUE_PATH}" ]] && { eerror "JOBQUEUE_PATH not set or not executable"; return 1; }
+ return 0
+}
+
+start() {
+ ebegin "Starting ${SVCNAME}"
+ checkconfig || return 1
+
+ piddir="${PIDFILE%/*}"
+ if [ ! -d "${piddir}" ]; then
+ checkpath -q -d -o $JOBQUEUE_USER:$JOBQUEUE_GROUP -m 0770 "${piddir}" || {
+ eend 1
+ return 1
+ }
+ fi
+
+ start-stop-daemon --start --pidfile $PIDFILE --user $JOBQUEUE_USER --group $JOBQUEUE_GROUP \
+ --exec $JOBQUEUE_PATH -- -p $PIDFILE -n $SVCNAME start 1>/dev/null
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping ${SVCNAME}"
+ checkconfig || return 1
+ start-stop-daemon --pidfile $PIDFILE --stop --exec $JOBQUEUE_PATH -- -p $PIDFILE -n $SVCNAME stop
+ eend $?
+}
diff --git a/www-apps/bugzilla/files/2.20/bugzilla.cron.daily b/www-apps/bugzilla/files/4.0/bugzilla.cron.daily
index e3e86589891d..e3e86589891d 100644
--- a/www-apps/bugzilla/files/2.20/bugzilla.cron.daily
+++ b/www-apps/bugzilla/files/4.0/bugzilla.cron.daily
diff --git a/www-apps/bugzilla/files/4.0/bugzilla.cron.tab b/www-apps/bugzilla/files/4.0/bugzilla.cron.tab
new file mode 100644
index 000000000000..3cf2d4a66240
--- /dev/null
+++ b/www-apps/bugzilla/files/4.0/bugzilla.cron.tab
@@ -0,0 +1 @@
+0 0 * * * /var/www/bugzilla/bugzilla.cron.daily
diff --git a/www-apps/bugzilla/files/2.20/postinstall-en.txt b/www-apps/bugzilla/files/4.0/postinstall-en.txt
index 3eeb24d5a89b..2d18de0b810f 100644
--- a/www-apps/bugzilla/files/2.20/postinstall-en.txt
+++ b/www-apps/bugzilla/files/4.0/postinstall-en.txt
@@ -1,12 +1,13 @@
0. Bugzilla has been installed into ${MY_INSTALLDIR}
1. To finish the installation, please read
- http://www.bugzilla.org/docs/2.20/html/installation.html
+ http://www.bugzilla.org/docs/${MY_PB}/en/html/installing-bugzilla.html
You will need to run ${MY_INSTALLDIR}/checksetup.pl
2. Please read the Release Notes, especially if you are upgrading:
- http://www.bugzilla.org/releases/2.20/release-notes.html
+ http://www.bugzilla.org/releases/${MY_PB}/release-notes.html
3. Please note that Apache2 sets AllowOverride None by default. You may have
to edit it to process the .htaccess file provided by Bugzilla. Please see
- http://httpd.apache.org/docs/2.0/mod/core.html#allowoverride for more info.
+ http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride and
+ http://www.bugzilla.org/docs/${MY_PB}/en/html/configuration.html#http for more info.
diff --git a/www-apps/bugzilla/files/2.20/reconfig b/www-apps/bugzilla/files/4.0/reconfig
index 71b0acea2585..71b0acea2585 100644
--- a/www-apps/bugzilla/files/2.20/reconfig
+++ b/www-apps/bugzilla/files/4.0/reconfig