Mozilla/mozilla/webtools/despot/config.pl.dist
justdave%bugzilla.org 95d8e914c8 Bug 313041: Make Despot use DBI instead of the deprecated Mysql module
Bug 313039: Make database host, name, password, etc configurable
Bug 318879: Fix "too early to check prototype" warning
r=timeless


git-svn-id: svn://10.0.0.236/trunk@187140 18797224-902f-48f8-a5cc-f745e15eee43
2006-01-08 06:50:21 +00:00

15 lines
296 B
Perl

#!/usr/bin/perl
#
# Despot configuration file
#
# Copy this file to config.pl, then make changes to it.
#
$::db_host = 'localhost'; # database host
$::db_name = 'mozusers'; # database name
$::db_user = 'despot'; # database username
$::db_pass = ''; # database password
1;