0854809896a99569b191dbd4209689f39933807a
[sfa.git] / util / config.py
1 # config.py
2 #
3 # geniwrapper configuration info
4 #
5 # this module holds configuration parameters for geniwrapper. The wrapper
6 # needs an account to connect to PLC with and a database to store geni
7 # tables
8
9 def get_default_dbinfo():
10     dbinfo={}
11     dbinfo['dbname'] = 'planetlab4'
12     dbinfo['address'] = 'localhost'\r
13     dbinfo['port'] = 5432\r
14     dbinfo['user'] = 'pgsqluser'\r
15     dbinfo['password'] = '4c77b272-c892-4bdf-a833-dddeeee1a2ed'
16
17     return dbinfo
18
19