diff options
author | Erich Eckner <git@eckner.net> | 2022-01-01 22:35:41 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2022-01-01 22:35:41 +0100 |
commit | b67e33ff8eeeca58c763112c172221a1a5fe593d (patch) | |
tree | 175321941a2c8f11c4eef53309c7a7e243838e60 /save-graph | |
parent | ff12d6752047becb6c3aa120f20cbb283c9b2780 (diff) | |
download | tinc-graph-master.tar.xz |
Diffstat (limited to 'save-graph')
-rwxr-xr-x | save-graph | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,8 @@ graph=$( tinc --net=$1 dump digraph ) +shift + pre=$( printf '%s\n' "${graph}" \ | sed ' @@ -51,7 +53,7 @@ inter=$( if printf '%s\n' "${graph}" \ | grep -qwF backup \ && printf '%s\n' "${graph}" \ -| greo -qwF backup_lo; then +| grep -qwF backup_lo; then extra=' "backup" -> "backup_lo" [style=dashed, constraint=false, dir=none];' else |