commit 4453f2c862acc6de8dcf5ff5bab4a27ff4a709a3
parent 7d761d515f2656ea2166b88f311ac86ccc47a070
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 28 Apr 2021 14:22:07 +0200
auth is broken, let us try without
Diffstat:
1 file changed, 0 insertions(+), 38 deletions(-)
diff --git 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
}