ungleich-graphviz/dns-easy.dot
Nico Schottelius 517e9fdb45 +local
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
2021-04-28 15:48:10 +02:00

16 lines
391 B
Text

digraph G {
node [ shape=box ]
#rankdir=LR;
label="
DNS lookups at ungleich.ch\n
No systemd, no network manager, no resolvconf, no systemd-resolved."
start [ shape=Mdiamond ] ;
resolvconf [ label="/etc/resolv.conf exists?" shape=oval ];
lookup [ label="Do DNS lookup" shape=doubleoctagon ];
start->resolvconf
resolvconf->lookup [ label="yes" ];
}