summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg38
1 files changed, 0 insertions, 38 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 542fa8e..7f82eaa 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -1259,40 +1259,6 @@ c["protocols"] = {"pb": {"port": "tcp:9989:interface=127.0.0.1"}}
c["buildbotURL"] = "https://buildbot.taler.net/"
-authz = util.Authz(
- allowRules=[
- util.ForceBuildEndpointMatcher(role="admins",
- builder=b)
- for b in BUILDER_LIST
- ] + [
- util.StopBuildEndpointMatcher(role="admins",
- builder=b)
- for b in BUILDER_LIST
- ] + [
- util.RebuildBuildEndpointMatcher(role="admins",
- builder=b)
- for b in BUILDER_LIST
- ] + [
- util.ForceBuildEndpointMatcher(role="norole",
- builder=b)
- for b in BUILDER_LIST
- ] + [
- util.StopBuildEndpointMatcher(role="norole",
- builder=b)
- for b in BUILDER_LIST
- ] + [
- util.RebuildBuildEndpointMatcher(role="norole",
- builder=b)
- for b in BUILDER_LIST
- ],
- roleMatchers=[
- util.RolesFromUsername(
- roles=["admins"],
- usernames=["marcello", "florian", "christian"]
- )
- ]
-)
-
# minimalistic config to activate new web UI
# -- formerly commented out as not packaged properly in Debian and others, see
# https://bugzilla.redhat.com/show_bug.cgi?id=1557687
@@ -1306,8 +1272,4 @@ c["www"] = {
},
"allowed_origins": ["https://*.taler.net"],
"avatar_methods": [],
- "auth": util.UserPasswordAuth({"marcello":"stanisci",
- "florian": "dold",
- "christian":"grothoff"}),
- "authz": authz
}