diff options
author | EUcancER <root@euer.krebsco.de> | 2012-06-06 00:11:02 +0200 |
---|---|---|
committer | EUcancER <root@euer.krebsco.de> | 2012-06-06 00:11:02 +0200 |
commit | 6046373ce92a9c9856d828b37cda28af437e36be (patch) | |
tree | e2d90e765496cce6fef49725a5d253795919b8b6 /retiolum/scripts | |
parent | c04b0047db2249317a905f7d95d2fcaef6a479cc (diff) |
//retiolum: trying to fix all_the_graphs
Diffstat (limited to 'retiolum/scripts')
-rwxr-xr-x | retiolum/scripts/adv_graphgen/all_the_graphs.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/retiolum/scripts/adv_graphgen/all_the_graphs.sh b/retiolum/scripts/adv_graphgen/all_the_graphs.sh index 0499e9c7..1640a446 100755 --- a/retiolum/scripts/adv_graphgen/all_the_graphs.sh +++ b/retiolum/scripts/adv_graphgen/all_the_graphs.sh @@ -1,8 +1,6 @@ #!/bin/bash -set -x ( - 1>>/tmp/build_graph echo "`date` begin all graphs" >> /tmp/build_graph cd $(dirname $(readlink -f $0)) PATH=$PATH:../../../util/bin/ @@ -10,6 +8,7 @@ set -x begin=`timer` (./anonytize.sh /srv/http/pub/graphs/retiolum/ && echo "`date` anonytize done" >> /tmp/build_graph)& (./sanitize.sh /srv/http/priv/graphs/retiolum/ && echo "`date` sanitize done" >> /tmp/build_graph)& - wait - graphitec "retiolum.graph.buildtime" "$(timer $begin)" &>>/tmp/build_graph +# wait +# graphitec "retiolum.graph.buildtime" "$(timer $begin)" >> /tmp/build_graph + echo "`date` end all graphs" >> /tmp/build_graph )& |