diff options
author | adrianp <adrianp@pkgsrc.org> | 2005-01-02 13:39:52 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2005-01-02 13:39:52 +0000 |
commit | 45bb99e3b37a10ec7a163f87223f7b7400ea2dfa (patch) | |
tree | d2230f8e3f49bb30fb16d91251dfbb1b2bf24806 /devel/bugzilla/files/localconfig | |
parent | a4a940a62a39ea1c8c700387a2fefa464c4dac95 (diff) | |
download | pkgsrc-45bb99e3b37a10ec7a163f87223f7b7400ea2dfa.tar.gz |
Bugzilla is a "Defect Tracking System" or "Bug-Tracking System". Defect
Tracking Systems allow individual or groups of developers to keep track of
outstanding bugs in their product effectively. Most commercial defect-tracking
software vendors charge enormous licensing fees. Despite being "free", Bugzilla
has many features its expensive counterparts lack. Consequently, Bugzilla has
quickly become a favorite of hundreds of organizations across the globe.
What Does Bugzilla Do?
- Track bugs and code changes
- Communicate with teammates
- Submit and review patches
- Manage quality assurance (QA)
Bugzilla can help you get a handle on the software development process.
Successful projects often are the result of successful organization and
communication. Bugzilla is a powerful tool that will help your team get
organized and communicate effectively.
Diffstat (limited to 'devel/bugzilla/files/localconfig')
-rw-r--r-- | devel/bugzilla/files/localconfig | 187 |
1 files changed, 187 insertions, 0 deletions
diff --git a/devel/bugzilla/files/localconfig b/devel/bugzilla/files/localconfig new file mode 100644 index 00000000000..857ea8fbab6 --- /dev/null +++ b/devel/bugzilla/files/localconfig @@ -0,0 +1,187 @@ +# +# With the introduction of a configurable index page using the +# template toolkit, Bugzilla's main index page is now index.cgi. +# Most web servers will allow you to use index.cgi as a directory +# index and many come preconfigured that way, however if yours +# doesn't you'll need an index.html file that provides redirection +# to index.cgi. Setting $index_html to 1 below will allow +# checksetup.pl to create one for you if it doesn't exist. +# NOTE: checksetup.pl will not replace an existing file, so if you +# wish to have checksetup.pl create one for you, you must +# make sure that there isn't already an index.html +$index_html = 0; + + +# +# For some optional functions of Bugzilla (such as the pretty-print patch +# viewer), we need the cvs binary to access files and revisions. +# Because it's possible that this program is not in your path, you can specify +# its location here. Please specify the full path to the executable. +$cvsbin = "/usr/bin/cvs"; + + + +# +# For some optional functions of Bugzilla (such as the pretty-print patch +# viewer), we need the interdiff binary to make diffs between two patches. +# Because it's possible that this program is not in your path, you can specify +# its location here. Please specify the full path to the executable. +$interdiffbin = "@PREFIX@/bin/interdiff"; + + + +# +# The interdiff feature needs diff, so we have to have that path. +# Please specify only the directory name, with no trailing slash. +$diffpath = "/usr/bin"; + + +# +# If you are using Apache for your web server, Bugzilla can create .htaccess +# files for you that will instruct Apache not to serve files that shouldn't +# be accessed from the web (like your local configuration data and non-cgi +# executable files). For this to work, the directory your Bugzilla +# installation is in must be within the jurisdiction of a <Directory> block +# in the httpd.conf file that has 'AllowOverride Limit' in it. If it has +# 'AllowOverride All' or other options with Limit, that's fine. +# (Older Apache installations may use an access.conf file to store these +# <Directory> blocks.) +# If this is set to 1, Bugzilla will create these files if they don't exist. +# If this is set to 0, Bugzilla will not create these files. +$create_htaccess = 1; + + +# +# This is the group your web server runs on. +# If you have a windows box, ignore this setting. +# If you do not have access to the group your web server runs under, +# set this to "". If you do set this to "", then your Bugzilla installation +# will be _VERY_ insecure, because some files will be world readable/writable, +# and so anyone who can get local access to your machine can do whatever they +# want. You should only have this set to "" if this is a testing installation +# and you cannot set this up any other way. YOU HAVE BEEN WARNED. +# If you set this to anything besides "", you will need to run checksetup.pl +# as root, or as a user who is a member of the specified group. +$webservergroup = "@BZ_WEB_GROUP@"; + + + +# +# How to access the SQL database: +# +$db_host = "localhost"; # where is the database? +$db_port = 3306; # which port to use +$db_name = "bugs"; # name of the MySQL database +$db_user = "user"; # user to attach to the MySQL database + + + +# +# Enter your database password here. It's normally advisable to specify +# a password for your bugzilla database user. +# If you use apostrophe (') or a backslash (\) in your password, you'll +# need to escape it by preceding it with a \ character. (\') or (\\) +# +$db_pass = 'changemeplease'; + + + +# Enter a path to the unix socket for mysql. If this is blank, then mysql's +# compiled-in default will be used. You probably want that. +$db_sock = '/tmp/mysql.sock'; + + + +# +# Should checksetup.pl try to check if your MySQL setup is correct? +# (with some combinations of MySQL/Msql-mysql/Perl/moonphase this doesn't work) +# +$db_check = 1; + + + +# +# Which bug and feature-request severities do you want? +# +@severities = ( + "blocker", + "critical", + "major", + "normal", + "minor", + "trivial", + "enhancement" +); + + + +# +# Which priorities do you want to assign to bugs and feature-request? +# +@priorities = ( + "P1", + "P2", + "P3", + "P4", + "P5" +); + + + +# +# What operatings systems may your products run on? +# +@opsys = ( + "All", + "Windows 3.1", + "Windows 95", + "Windows 98", + "Windows ME", # Millenium Edition (upgrade of 98) + "Windows 2000", + "Windows NT", + "Windows XP", + "Windows Server 2003", + "Mac System 7", + "Mac System 7.5", + "Mac System 7.6.1", + "Mac System 8.0", + "Mac System 8.5", + "Mac System 8.6", + "Mac System 9.x", + "Mac OS X 10.0", + "Mac OS X 10.1", + "Mac OS X 10.2", + "Mac OS X 10.3", + "Linux", + "BSD/OS", + "FreeBSD", + "NetBSD", + "OpenBSD", + "AIX", + "BeOS", + "HP-UX", + "IRIX", + "Neutrino", + "OpenVMS", + "OS/2", + "OSF/1", + "Solaris", + "SunOS", + "other" +); + + + +# +# What hardware platforms may your products run on? +# +@platforms = ( + "All", + "DEC", + "HP", + "Macintosh", + "PC", + "SGI", + "Sun", + "Other" +); |