File: db_dump.cfg

package info (click to toggle)
httpry 0.1.8-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 436 kB
  • sloc: ansic: 1,358; perl: 1,336; sh: 155; makefile: 62
file content (37 lines) | stat: -rw-r--r-- 781 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Config file for db_dump.pm
#
# $type (required)
#    Type of destination database; currenly only
#    'mysql' is implemented
#
# $db (required)
#    Name of the database to connect to
#
# $host (required)
#    Hostname of machine where database is located;
#    use 'localhost' for the local machine
#
# $port (required)
#    Port database is listening on; default is 3306
#
# $user (not required)
#    Username required by database, if necessary
#
# $pass (not required)
#    Password required by database, if necessary
#
# $rmbefore (not required)
#    Delete all data inserted this many days prior;
#    0 disables removal completely
#

$type     = "mysql";
$db       = "httpry";
$host     = "localhost";
$port     = 3306;
$user     = "";
$pass     = "";
$rmbefore = 0;

1;