Skip to content

Commit 487cced

Browse files
author
Alexander Smishlajev
committed
remove obsolete configuration notes
1 parent d1dfbe8 commit 487cced

File tree

2 files changed

+1
-52
lines changed

2 files changed

+1
-52
lines changed

doc/mysql.txt

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
MySQL Backend
33
=============
44

5-
:version: $Revision: 1.10 $
5+
:version: $Revision: 1.11 $
66

77
This notes detail the MySQL backend for the Roundup issue tracker.
88

@@ -49,26 +49,6 @@ The MySQL database should not contain any tables. Tests will not
4949
drop the database with existing data.
5050

5151

52-
Additional configuration
53-
========================
54-
55-
To initialise and use the MySQL database backend, roundup's configuration
56-
file (``config.py`` in the tracker's home directory) should have the following
57-
entries (substituting real values of course)::
58-
59-
MYSQL_DBHOST = 'localhost'
60-
MYSQL_DBUSER = 'rounduptest'
61-
MYSQL_DBPASSWORD = 'rounduptest'
62-
MYSQL_DBNAME = 'rounduptest'
63-
MYSQL_DATABASE = ( MYSQL_DBHOST, MYSQL_DBUSER, MYSQL_DBPASSWORD,
64-
MYSQL_DBNAME )
65-
66-
Fill in the first four entries with values for your local MySQL installation
67-
before running "roundup-admin initialise". Use the commands in the
68-
`Running the MySQL tests`_ to set up a database if you have privilege, or
69-
ask your local administrator if not.
70-
71-
7252
Showing MySQL who's boss
7353
========================
7454

@@ -82,4 +62,3 @@ just::
8262

8363
and all will be better (note that on some systems, ``mysql`` is spelt
8464
``mysqld``).
85-

doc/postgresql.txt

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -29,36 +29,6 @@ you wish to test against a different database.
2929
The test database will be called "rounduptest".
3030

3131

32-
Additional configuration
33-
========================
34-
35-
To initialise and use PostgreSQL database roundup's configuration file
36-
(``config.py`` in the tracker's home directory) should be ammended with
37-
the following constants (substituting real values, obviously)::
38-
39-
POSTGRESQL_DATABASE = {'database': 'rounduptest'}
40-
41-
Note that it's usually a good idea to explicitly specify the user which is
42-
to be used access the database too, to avoid permissions problems. If
43-
postgresql is not local, or a different user is to be used, then more
44-
information may be supplied::
45-
46-
POSTGRESQL_DATABASE = {
47-
'host': 'localhost', 'port': 5432,
48-
'database': 'roundup'
49-
'user': 'roundup', 'password': 'roundup',
50-
}
51-
52-
Also note that you can leave some values out of
53-
``POSTGRESQL_DATABASE``: 'host' and 'port' are not necessary when
54-
connecting to a local database and 'password'
55-
is optional if postgres trusts local connections.
56-
57-
The user specified in ``user`` must have rights to create a new database
58-
and to connect to the "template1" database, used while initializing roundup.
59-
60-
61-
6232
Credit
6333
======
6434

0 commit comments

Comments
 (0)