diff options
author | Karel Kočí <cynerd@email.cz> | 2015-08-12 10:47:27 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-08-12 10:47:27 +0200 |
commit | 8a3d7b8ed5b559c3777b9ee4715361d2dc01da07 (patch) | |
tree | 06bfb76a249137604cfa5e7ef8383cb28a2d97b3 | |
parent | 86eb2c8945b952492a99f774262a2aacaaf58776 (diff) | |
download | linux-conf-perf-8a3d7b8ed5b559c3777b9ee4715361d2dc01da07.tar.gz linux-conf-perf-8a3d7b8ed5b559c3777b9ee4715361d2dc01da07.tar.bz2 linux-conf-perf-8a3d7b8ed5b559c3777b9ee4715361d2dc01da07.zip |
Change default database configuration
Database configuration was set as it was used during development and
testing. Changed to some of default not usable values.
-rw-r--r-- | conf.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -37,13 +37,13 @@ picosat_args = [] # db_database # Database in PostgreSQL to be used for this tools -db_database = 'lcp' +db_database = 'linux-conf-perf' # db_user # Define PostgreSQL user -db_user = 'cynerd' +db_user = 'user' # db_password # Define PostrgreSQL user password -db_password = 'cynerd' +db_password = 'password' # db_host # Address of PostgreSQL database server db_host = 'localhost' |