Skip to content

Instantly share code, notes, and snippets.

Created March 26, 2015 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/734233d6cbffb9560a4b to your computer and use it in GitHub Desktop.
Save anonymous/734233d6cbffb9560a4b to your computer and use it in GitHub Desktop.
# Generating graph
digraph packages {
rankdir=LR;
concentrate=true;
"$syslog" -> "dhcpd"[color=blue] ;
"$remote_fs" -> "dhcpd"[color=blue] ;
"$network" -> "dhcpd"[color=blue] ;
"dhcpd" [shape=box];
"$syslog" -> "dhcpdv6"[color=blue] ;
"$remote_fs" -> "dhcpdv6"[color=blue] ;
"$network" -> "dhcpdv6"[color=blue] ;
"dhcpdv6" [shape=box];
"$syslog" -> "keepalived"[color=blue] ;
"$network" -> "keepalived"[color=blue] ;
"keepalived" [shape=box];
"$local_fs" -> "vyatta-quagga"[color=blue] ;
"$network" -> "vyatta-quagga"[color=blue] ;
"$remote_fs" -> "vyatta-quagga"[color=blue] ;
"$syslog" -> "vyatta-quagga"[color=blue] ;
"vyatta-quagga" [shape=box];
"$syslog" -> "vyatta-router"[color=blue] ;
"$time" -> "vyatta-router"[color=blue] ;
"$local_fs" -> "vyatta-router"[color=blue] ;
"vyatta-router" [shape=box];
"sendsigs" -> "$remote_fs"[color=blue] ;
"$remote_fs" [shape=box];
"umountnfs" -> "sendsigs"[color=blue] ;
"sendsigs" [shape=box];
"rsyslog" -> "$syslog"[color=blue] ;
"$syslog" [shape=box];
"umountnfs" -> "rsyslog"[color=blue] ;
"$time" -> "rsyslog"[color=blue] ;
"rsyslog" -> "sendsigs"[color=yellow] ;
"rsyslog" [shape=box];
"ubnt-init" -> "vyatta-keepalived"[color=yellow] ;
"ubnt-init" -> "vyatta-quagga"[color=yellow] ;
"ubnt-init" -> "vyatta-router"[color=yellow] ;
"ubnt-init" -> "sendsigs"[color=yellow] ;
"ubnt-init" -> "rsyslog"[color=yellow] ;
"ubnt-init" [shape=box];
"reboot" [shape=box];
"localcrit-netns" -> "localcrit-net"[color=blue] ;
"localcrit-net" -> "ubnt-init"[color=yellow] ;
"localcrit-net" [shape=box];
"localcrit-netns" -> "ubnt-init"[color=yellow] ;
"localcrit-netns" [shape=box];
"vyatta-quagga" -> "$all"[color=blue] ;
"$all" [shape=box];
"keepalived" -> "$all"[color=blue] ;
"rsyslog" -> "$all"[color=blue] ;
"$remote_fs" -> "$all"[color=blue] ;
"localcrit-net" -> "$all"[color=blue] ;
"$syslog" -> "$all"[color=blue] ;
"dhcpd" -> "$all"[color=blue] ;
"dhcpdv6" -> "$all"[color=blue] ;
"vyatta-router" -> "$all"[color=blue] ;
"sendsigs" -> "$all"[color=blue] ;
"ubnt-init" -> "$all"[color=blue] ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment