Skip to content
Snippets Groups Projects
Commit 2dbd41d5 authored by Erik Alexandre Pucci's avatar Erik Alexandre Pucci Committed by Josiney de Souza
Browse files

use/bandwidth-usage.tree: Added $FIRST_EXECUTION test(1)


If it's the first time execution of the agent, do not collect network data
and exit without error.

Signed-off-by: default avatarErik Alexandre Pucci <eap08@c3sl.ufpr.br>
Acked-by: default avatarKlismann Smoger Mottin <ksm09@inf.ufpr.br>
Signed-off-by: default avatarJosiney de Souza <josineys@c3sl.ufpr.br>
parent c769048c
No related branches found
No related tags found
No related merge requests found
......@@ -155,8 +155,8 @@ PREFIX="$(dirname $(readlink -f $0))"
PROJECT=$PREFIX/../project/source.int
# Verify if this is not an UCA Classmate, UCA Server nor Projector ProInfo. If
# it is, do not collect network data and exit
if test "$(bash $PROJECT)" != "0"; then
# it is, or if it's the first execution, do not collect network data and exit
if test "$(bash $PROJECT)" != "0" -o "${FIRST_EXECUTION}"; then
exit 0
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment