diff options
Diffstat (limited to 'source')
-rw-r--r-- | source/master.cfg | 2 | ||||
-rw-r--r-- | source/orch_config.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/source/master.cfg b/source/master.cfg index 281b94a..162df0f 100644 --- a/source/master.cfg +++ b/source/master.cfg @@ -165,7 +165,7 @@ from buildbot.status.web import authz, auth authz_cfg=authz.Authz( # change any of these to True to enable; see the manual for more # options - auth=auth.BasicAuth([("codething","password")]), + auth=auth.BasicAuth([(orch_config.web_user,orch_config.web_user_password)]), gracefulShutdown = False, forceBuild = 'auth', # use this to test your slave once it is set up forceAllBuilds = False, diff --git a/source/orch_config.py b/source/orch_config.py index f074050..4ecf94d 100644 --- a/source/orch_config.py +++ b/source/orch_config.py @@ -7,3 +7,5 @@ categories = [ build_timeout = 1800 deploy_timeout = 1800 buildslave_scripts = 'git://cu010-trove.codethink.com/cu010-trove/br6/buildslave-scripts.git' +web_user = "codething" +web_password = "password" |