From ddc12d55ce6354e2897c304d1ced297924e0653f Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sun, 2 Jan 2011 03:16:04 +0000 Subject: [PATCH] Remove buildbot users mysql pass from the config file and change it to something else. (I set this up months ago and forgot it was there, previous versions of buildbot didn't use mysql. Originally committed to SVN as r5093. --- devel/tinderbox/buildbot/master/master.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devel/tinderbox/buildbot/master/master.cfg b/devel/tinderbox/buildbot/master/master.cfg index f4d7bc087..5c55a0dff 100644 --- a/devel/tinderbox/buildbot/master/master.cfg +++ b/devel/tinderbox/buildbot/master/master.cfg @@ -3,14 +3,14 @@ ############### c = BuildmasterConfig = {} -c['db_url'] = "mysql://buildbot:b33r@localhost/buildbot?max_idle=300" - # Import our passwords passwd_file = open('passwd.py') exec passwd_file passwd_file.close() +c['db_url'] = "mysql://buildbot:%s@localhost/buildbot?max_idle=300" % passwd["mysql"] + # What port to listen on, used for try attempts as well. c['slavePortnum'] = "tcp:9899:interface=68.233.14.102"