diff options
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 |