summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-22 07:35:07 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-22 07:35:07 +0100
commitb7b009f857497c0ffae0ad349ea7d043c3202213 (patch)
treeec6737e643cdbc69b59f67054ae651705608b26e
parent423df35e63aa6008fce88b37e5f1d543ca9463e4 (diff)
downloadorchestration-b7b009f857497c0ffae0ad349ea7d043c3202213.tar.gz
Allow logged in users to do anything
-rw-r--r--source/master.cfg12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/master.cfg b/source/master.cfg
index df11887..d9fde98 100644
--- a/source/master.cfg
+++ b/source/master.cfg
@@ -95,13 +95,13 @@ authz_cfg=authz.Authz(
# change any of these to True to enable; see the manual for more
# options
auth=auth.BasicAuth([(orch_config.web_user,orch_config.web_user_password)]),
- gracefulShutdown = False,
+ gracefulShutdown = 'auth',
forceBuild = 'auth', # use this to test your slave once it is set up
- forceAllBuilds = False,
- pingBuilder = False,
- stopBuild = False,
- stopAllBuilds = False,
- cancelPendingBuild = False,
+ forceAllBuilds = 'auth',
+ pingBuilder = 'auth',
+ stopBuild = 'auth',
+ stopAllBuilds = 'auth',
+ cancelPendingBuild = 'auth',
)
c['status'].append(html.WebStatus(http_port=8010, authz=authz_cfg))