]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/misc/organization.dot
contrib/kyua: Merge vendor import
[FreeBSD/FreeBSD.git] / share / misc / organization.dot
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
15 digraph org {
16
17 node [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
27 core [label="Core Team\ncore@FreeBSD.org\nbapt, bcr, emaste,\ngrog, jhb, lwhsu,\nmanu, tcberner, 0mp"]
28 coresecretary [label="Core Team Secretary\ncore-secretary@FreeBSD.org\ncarlavilla"]
29 doccommitters [label="Doc/www Committers\ndoc-committers@FreeBSD.org"]
30 doceng [label="Documentation Engineering Team\ndoceng@FreeBSD.org\nbcr, gabor, gjb, hrs,\nblackend, ryusuke, wblock"]
31 pkgmgr [label="Package Management Team\npkgmgr@FreeBSD.org\nantoine, bdrewery"]
32 portscommitters [label="Ports Committers\nports-committers@FreeBSD.org"]
33 portmgr [label="Port Management Team\nportmgr@FreeBSD.org\nbapt, bofh, mat\npizzamig, rene, tcberner"]
34 portmgrsecretary [label="Port Management Team Secretary\nportmgr-secretary@FreeBSD.org\nrene"]
35 re [label="Primary Release Engineering Team\nre@FreeBSD.org\ngjb, kib\n, blackend, delphij, cperciva"]
36 secteam [label="Security Team\nsecteam@FreeBSD.org\ndelphij,\ndes, markj,\nemaste,\ngjb, gordon,\noshogbo, philip"]
37 portssecteam [label="Ports Security Team\nports-secteam@FreeBSD.org\ndelphij, amdmi3, eadler, jgh, rea, riggs, sbz, simon, zi"]
38 secteamsecretary [label="Security Team Secretary\nsecteam-secretary@FreeBSD.org\nremko"]
39 securityofficer [label="Security Officer Team\nsecurity-officer@FreeBSD.org\nbenno, delphij,\ndes, emaste,\ngjb, gordon,\nremko"]
40 srccommitters [label="Src Committers\nsrc-committers@FreeBSD.org"]
41
42 # Admin teams go here alphabetically sorted
43
44 accounts [label="Accounts Team\naccounts@FreeBSD.org\nclusteradm"]
45 backups [label="Backup Administrators\nbackups@FreeBSD.org\nclusteradm"]
46 bugmeister [label="Bugmeister Team\nbugmeister@FreeBSD.org\neadler, gavin, gonzo"]
47 clusteradm [label="Cluster Administrators\nclusteradm@FreeBSD.org\nallanjude, brd,\ndhw, gavin,\ngjb, peter,\nsbruno, simon,\nzi"]
48 dnsadm [label="DNS Administrators\ndnsadm@FreeBSD.org\nclusteradm"]
49 mirroradmin [label="FTP/WWW Mirror Site Coordinators\nmirror-admin@FreeBSD.org\nclusteradm,\nkuriyama"]
50 postmaster [label="Postmaster Team\npostmaster@FreeBSD.org\ndhw, krion, ler, philip, pi, rea, remko, zi"]
51 webmaster [label="Webmaster Team\nwebmaster@FreeBSD.org\ngjb, wblock, blackend,\ngabor, hrs, wosch"]
52
53 # Misc hats go here alphabetically sorted
54
55 donations [label="Donations Team\ndonations@FreeBSD.org\nwilko, gahr, pgolluci,\nobrien, ds,\nrwatson"]
56 marketing [label="Marketing Team\nmarketing@FreeBSD.org\nSteven Beedle, Denise Ebery, deb,\njkoshy, dru, mwlucas, imp,\nKris Moore, murray, mattt,\nJeremy C. Reed, rwatson"]
57 vendorrelations [label="Vendor Relations\nvendor-relations@FreeBSD.org\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
78 core -> coresecretary
79 core -> doceng
80 core -> portmgr
81 core -> re
82 core -> securityofficer
83 core -> srccommitters
84
85 doceng -> doccommitters
86
87 portmgr -> pkgmgr
88 portmgr -> portmgrsecretary
89 portmgr -> portscommitters
90
91 securityofficer -> secteam
92 securityofficer -> portssecteam
93
94 secteam -> secteamsecretary
95
96 }