summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenedikt Boehm <hollow@gentoo.org>2008-03-07 14:37:30 +0000
committerBenedikt Boehm <hollow@gentoo.org>2008-03-07 14:37:30 +0000
commite2f2a6820168199f202eb5327948a0e3da24774f (patch)
treea1d0af86faace38ddc29f63140ba56961b94caad /www-apps/rt/files
parentremove vulnerable version from tree (diff)
downloadgentoo-2-e2f2a6820168199f202eb5327948a0e3da24774f.tar.gz
gentoo-2-e2f2a6820168199f202eb5327948a0e3da24774f.tar.bz2
gentoo-2-e2f2a6820168199f202eb5327948a0e3da24774f.zip
version bump wrt #195351; ebuild cleanup wrt #208584
(Portage version: 2.1.4.4)
Diffstat (limited to 'www-apps/rt/files')
-rw-r--r--www-apps/rt/files/3.2.1/postinstall-en.txt42
-rw-r--r--www-apps/rt/files/3.2.1/reconfig26
-rw-r--r--www-apps/rt/files/rt_apache.conf30
-rw-r--r--www-apps/rt/files/rt_apache1_fcgi.conf41
4 files changed, 0 insertions, 139 deletions
diff --git a/www-apps/rt/files/3.2.1/postinstall-en.txt b/www-apps/rt/files/3.2.1/postinstall-en.txt
deleted file mode 100644
index e2f9ad510ff6..000000000000
--- a/www-apps/rt/files/3.2.1/postinstall-en.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-
-***********************************************************
-You now need to edit your local config files,
-which will be located in ${VHOST_ROOT}/rt-config/RT_Config.pm and RT_SiteConfig.pm
-
-BE SURE TO READ /usr/share/doc/${P}/README.gz , especially if
-you'd prefer to use an alias, or if you want to setup RT's e-mail gateway
-
-RT documentation can be found at http://www.bestpractical.com/rt/docs.html
-If you need more help, consider searching the mailing list (Google site:lists.fsck.com )
-
-***********************************************************
-1. If this is a new install, you now need to initialize RT's database.
-
-For MySQL:
-rt-setup-database --action init --dba root --prompt-for-dba-password
-For PostgreSQL:
-rt-setup-database --action init --dba postgres --prompt-for-dba-password
-
-For this to work, PostgreSQL needs to listen on TCP 5432:
-In your postgresql.conf, set tcpip_socket = true, port = 5432
-
-***********************************************************
-2. Read the README to configure your webserver for RT. For the impatient:
-put this in ${MY_INSTALLDIR}/.htaccess (although you really should put it in
-your Apache configs)
-
-AddDefaultCharset UTF-8
-
-PerlModule Apache::DBI
-PerlRequire /usr/bin/webmux.pl
-
-SetHandler perl-script
-PerlHandler RT::Mason
-PerlSetEnv PERL5LIB /usr/lib
-
-***********************************************************
-3. Restart your webserver (e.g., for Apache: /etc/init.d/apache restart )
-
-***********************************************************
-4. Note that the default login is 'root', and the password is 'password'. It is
-a Good Idea(TM) to change the defaults to something more secure.
diff --git a/www-apps/rt/files/3.2.1/reconfig b/www-apps/rt/files/3.2.1/reconfig
deleted file mode 100644
index 447c5b490234..000000000000
--- a/www-apps/rt/files/3.2.1/reconfig
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-if [ $1 = "start" -o $1 = "install" ]; then
- # don't fix location - breaks sandbox
- #sed -i "s|${MY_HOSTROOTDIR}|${VHOST_ROOT}|g" /usr/bin/standalone_httpd /usr/bin/rt-crontool /usr/bin/webmux.pl /usr/lib/RT.pm
- # sed -i "s|${MY_HOSTROOTDIR}|\/usr|" /usr/bin/mason_handler.scgi
- # sed -i "s|${MY_HTDOCSDIR}|${MY_INSTALLDIR}|" /usr/lib/RT.pm /usr/bin/rt-mailgate
-
- # fix permissions
- # chown -R ${VHOST_SERVER_GID}:${VHOST_SERVER_UID} /var/rt
-
- # check for upgrades
- cd ${VHOST_ROOT}/rt-config/upgrade
- echo "You may need to update your database."
- echo "For each item in the output below"
- echo "whose name is greater than your previously installed RT version,"
- echo "rt-setup-database --action schema --datadir ${VHOST_ROOT}/rt-config/upgrade/<version>"
- echo "rt-setup-database --action acl --datadir ${VHOST_ROOT}/rt-config/upgrade/<version>"
- echo "rt-setup-database --action insert --datadir ${VHOST_ROOT}/rt-config/upgrade/<version>"
- echo "Don't forget to read the README for more details"
- ls
-
-elif [ $1 = "clean" ]; then
- echo $1
- # rm -f /usr/bin/standalone_httpd /usr/bin/rt-crontool /usr/bin/webmux.pl /usr/lib/RT.pm /usr/bin/mason_handler.scgi /usr/bin/rt-mailgate
- # rm -rf /var/rt
-fi
diff --git a/www-apps/rt/files/rt_apache.conf b/www-apps/rt/files/rt_apache.conf
deleted file mode 100644
index 896f642c55af..000000000000
--- a/www-apps/rt/files/rt_apache.conf
+++ /dev/null
@@ -1,30 +0,0 @@
-<IfDefine PERL>
- <VirtualHost MY_RT_DOMAIN:80>
- ServerName MY_RT_DOMAIN
-
- DocumentRoot HTDOCS
- ServerAdmin YOUR_EMAIL_HERE
-
- AddDefaultCharset UTF-8
- <IfDefine USERDIR>
- UserDir disabled
- </IfDefine>
-
- PerlModule Apache::DBI
- PerlRequire RT_DIR/bin/webmux.pl
-
- <Location />
- SetHandler perl-script
- PerlHandler RT::Mason
- PerlSetEnv PERL5LIB /usr/lib
- </Location>
-
- <Directory "HTDOCS">
- Options Indexes FollowSymLinks
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
-
- </VirtualHost>
-</IfDefine>
diff --git a/www-apps/rt/files/rt_apache1_fcgi.conf b/www-apps/rt/files/rt_apache1_fcgi.conf
deleted file mode 100644
index 0bff8a0556f9..000000000000
--- a/www-apps/rt/files/rt_apache1_fcgi.conf
+++ /dev/null
@@ -1,41 +0,0 @@
-<IfDefine FASTCGI>
-
- # Tell FastCGI to put its temporary files somewhere sane.
- FastCgiIpcDir /tmp
-
- # Tell FastCGI that it should use apache's "suexec" binary to call any FastCGI script.
- # This is a GLOBAL setting
- FastCgiWrapper /usr/sbin/suexec
-
- # Apache 1.3 discards the user and group parameters on the FastCgiServer line.
- # Apache 2.0 requires them.
- FastCgiServer RT_DIR/bin/mason_handler.fcgi -idle-timeout 120 -user rt -group rt -processes 4
-
-
- <VirtualHost MY_RT_DOMAIN:80>
- ServerName MY_RT_DOMAIN
-
- DocumentRoot HTDOCS
- ServerAdmin YOUR_EMAIL_HERE
-
- AddDefaultCharset UTF-8
- <IfDefine USERDIR>
- UserDir disabled
- </IfDefine>
-
- # Set the rt user and group as the executing user for this virtual host
- User rt
- Group rt
-
- AddHandler fastcgi-script fcgi
- ScriptAlias / RT_DIR/bin/mason_handler.fcgi/
-
- <Directory "HTDOCS">
- Options Indexes FollowSymLinks
- AllowOverride None
- Order allow,deny
- Allow from all
- </Directory>
-
- </VirtualHost>
-</IfDefine>