diff options
author | Felix Richter <github@syntax-fehler.de> | 2011-05-19 21:04:56 +0200 |
---|---|---|
committer | Felix Richter <github@syntax-fehler.de> | 2011-05-19 21:04:56 +0200 |
commit | e110354524568f4365078ca0a37d9b44d57596a6 (patch) | |
tree | 7fd2982f8dbf9dde0af56f9a3c3c1018986b64cb /.scripts/adv_graphgen/sanitize.sh | |
parent | ee453a6421300854a299a4954744c8e73f23913e (diff) |
cleaned up the script mess
README: added README files for the whole directory as well as the subdirs
adv_graphgen/* : contains the graphgen files
tinc_setup/* : contains the build script and the bootstrap script
tinc_multicast/* : contains the multicast script
Diffstat (limited to '.scripts/adv_graphgen/sanitize.sh')
-rwxr-xr-x | .scripts/adv_graphgen/sanitize.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.scripts/adv_graphgen/sanitize.sh b/.scripts/adv_graphgen/sanitize.sh new file mode 100755 index 00000000..88591b67 --- /dev/null +++ b/.scripts/adv_graphgen/sanitize.sh @@ -0,0 +1,13 @@ +GRAPH_SETTER1=dot +GRAPH_SETTER2=circo +LOG_FILE=/var/log/everything.log +OPENER=/bin/true + +sudo pkill -USR2 tincd +sudo sed -n '/tinc.retiolum/{s/.*tinc.retiolum\[[0-9]*\]: //gp}' $LOG_FILE |\ + ./parse.py > retiolum.dot + +$GRAPH_SETTER1 -Tpng -o $1retiolum_1.png retiolum.dot +$GRAPH_SETTER2 -Tpng -o $1retiolum_2.png retiolum.dot +$OPENER retiolum_1.png &>/dev/null +rm retiolum.dot |