mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 10:00:54 +00:00
15 lines
296 B
Plaintext
15 lines
296 B
Plaintext
|
#!/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;
|
||
|
|