doc: Fix typos.
[jackhill/guix/guix.git] / doc / images / service-graph.dot
1 digraph "Service Type Dependencies" {
2 shepherd [shape = box, fontname = Helvetica];
3 pam [shape = box, fontname = Helvetica];
4 etc [shape = box, fontname = Helvetica];
5 profile [shape = box, fontname = Helvetica];
6 accounts [shape = box, fontname = Helvetica];
7 activation [shape = box, fontname = Helvetica];
8 boot [shape = box, fontname = Helvetica];
9 system [shape = house, fontname = Helvetica];
10 lshd -> shepherd;
11 lshd -> pam;
12 udev -> shepherd;
13 nscd -> shepherd [label = "extends"];
14 "nss-mdns" -> nscd;
15 "kvm-rules" -> udev;
16 colord -> udev;
17 dbus -> shepherd;
18 colord -> dbus;
19 upower -> udev;
20 upower -> dbus;
21 polkit -> dbus;
22 polkit -> pam;
23 elogind -> dbus;
24 elogind -> udev;
25 elogind -> polkit [label = "extends"];
26 shepherd -> boot;
27 colord -> accounts;
28 accounts -> activation;
29 accounts -> etc;
30 etc -> activation;
31 activation -> boot;
32 pam -> etc;
33 elogind -> pam;
34 guix -> shepherd;
35 guix -> activation;
36 guix -> accounts;
37 boot -> system;
38 etc -> system;
39 profile -> system;
40 }