xref: /freebsd-14.2/share/misc/organization.dot (revision b8e171b7)
1
2# This file is meant to show the infrastructural organization of the
3# FreeBSD Project; what kind of teams we have and how they relate to
4# each other.
5# For a detailed description of the responsibilities and duties of the listed
6# teams, please see our Administration page at
7# https://www.freebsd.org/administration/ .
8#
9# The graphical output can be generated from this file with the following
10# command:
11# $ dot -T png -o file.png organization.dot
12#
13# The dot binary is part of the graphics/graphviz port.
14
15digraph org {
16
17node [color=lightblue2, style=filled, bgcolor=black];
18
19# Meta-categories go here
20
21_devel [label="FreeBSD Developers"]
22_admin [label="FreeBSD Infrastructure Administrators"]
23_misc [label="Miscellaneous Hats"]
24
25# Development teams go here alphabetically sorted by FreeBSD login name
26
27core [label="Core Team\[email protected]\nbapt, bcr, emaste,\ngrog, jhb, lwhsu,\nmanu, tcberner, 0mp"]
28coresecretary [label="Core Team Secretary\[email protected]\ncarlavilla"]
29doccommitters [label="Doc/www Committers\[email protected]"]
30doceng [label="Documentation Engineering Team\[email protected]\nbcr, gabor, gjb, hrs,\nblackend, ryusuke, wblock"]
31pkgmgr [label="Package Management Team\[email protected]\nantoine, bdrewery"]
32portscommitters [label="Ports Committers\[email protected]"]
33portmgr [label="Port Management Team\[email protected]\nbapt, bofh, mat,\npizzamig, rene, tcberner"]
34portmgrsecretary [label="Port Management Team Secretary\[email protected]\nrene"]
35re [label="Primary Release Engineering Team\[email protected]\ngjb, kib,\nblackend, delphij, cperciva"]
36secteam [label="Security Team\[email protected]\ndelphij,\ndes, markj,\nemaste,\ngjb, gordon,\noshogbo, philip"]
37portssecteam [label="Ports Security Team\[email protected]\ndelphij, amdmi3, eadler, jgh, rea, riggs, sbz, simon, zi"]
38secteamsecretary [label="Security Team Secretary\[email protected]\nremko"]
39securityofficer [label="Security Officer Team\[email protected]\nbenno, delphij,\ndes, emaste,\ngjb, gordon,\nremko"]
40srccommitters [label="Src Committers\[email protected]"]
41
42# Admin teams go here alphabetically sorted
43
44accounts [label="Accounts Team\[email protected]\nclusteradm"]
45backups [label="Backup Administrators\[email protected]\nclusteradm"]
46bugmeister [label="Bugmeister Team\[email protected]\neadler, gavin, gonzo"]
47clusteradm [label="Cluster Administrators\[email protected]\nallanjude, brd,\ndhw, gavin,\ngjb, peter,\nsbruno, simon,\nzi"]
48dnsadm [label="DNS Administrators\[email protected]\nclusteradm"]
49mirroradmin [label="FTP/WWW Mirror Site Coordinators\[email protected]\nclusteradm,\nkuriyama"]
50postmaster [label="Postmaster Team\[email protected]\ndhw, krion, ler, philip, pi, rea, remko, zi"]
51webmaster [label="Webmaster Team\[email protected]\ngjb, wblock, blackend,\ngabor, hrs, wosch"]
52
53# Misc hats go here alphabetically sorted
54
55donations [label="Donations Team\[email protected]\nwilko, gahr, pgolluci,\nobrien, ds,\nrwatson"]
56marketing [label="Marketing Team\[email protected]\nSteven Beedle, Denise Ebery, deb,\njkoshy, dru, mwlucas, imp,\nKris Moore, murray, mattt,\nJeremy C. Reed, rwatson"]
57vendorrelations [label="Vendor Relations\[email protected]\ncore, FreeBSD Foundation"]
58
59# Here are the team relationships.
60# Group together all the entries for the superior team.
61# Keep the list sorted by the superior team entry.
62
63_admin -> accounts
64_admin -> backups
65_admin -> bugmeister
66_admin -> clusteradm
67_admin -> dnsadm
68_admin -> mirroradmin
69_admin -> postmaster
70_admin -> webmaster
71
72_devel -> core
73
74_misc -> donations
75_misc -> marketing
76_misc -> vendorrelations
77
78core -> coresecretary
79core -> doceng
80core -> portmgr
81core -> re
82core -> securityofficer
83core -> srccommitters
84
85doceng -> doccommitters
86
87portmgr -> pkgmgr
88portmgr -> portmgrsecretary
89portmgr -> portscommitters
90
91securityofficer -> secteam
92securityofficer -> portssecteam
93
94secteam -> secteamsecretary
95
96}
97