mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
4c1018afe3
Bug 313039: Make database host, name, password, etc configurable Bug 318879: Fix "too early to check prototype" warning r=timeless
15 lines
296 B
Perl
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;
|
|
|