forked from mia/Aegisub
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.
This commit is contained in:
parent
08750b94e8
commit
ddc12d55ce
1 changed files with 2 additions and 2 deletions
|
@ -3,14 +3,14 @@
|
||||||
###############
|
###############
|
||||||
c = BuildmasterConfig = {}
|
c = BuildmasterConfig = {}
|
||||||
|
|
||||||
c['db_url'] = "mysql://buildbot:b33r@localhost/buildbot?max_idle=300"
|
|
||||||
|
|
||||||
|
|
||||||
# Import our passwords
|
# Import our passwords
|
||||||
passwd_file = open('passwd.py')
|
passwd_file = open('passwd.py')
|
||||||
exec passwd_file
|
exec passwd_file
|
||||||
passwd_file.close()
|
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.
|
# What port to listen on, used for try attempts as well.
|
||||||
c['slavePortnum'] = "tcp:9899:interface=68.233.14.102"
|
c['slavePortnum'] = "tcp:9899:interface=68.233.14.102"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue