Skip to content
Snippets Groups Projects
Commit 1a4344d6 authored by Edileuton Henrique de Oliveira's avatar Edileuton Henrique de Oliveira
Browse files

agent: Add a data list that will be collected about the telecentro

parent beed1f04
No related branches found
No related tags found
No related merge requests found
......@@ -29,9 +29,31 @@ if test -z "${PREFIX}"; then
exit 2
fi
# Collect telecentro informations
while read line; do
tag=$(echo line | awk -F'=' '{print $1}')
value=$(echo line | awk -F'=' '{print $2}')
printf "<$tag>$value</$tag>"
done < ${CONFDIR}/telecentroInfo
# Telecentro data that will be collected
COLLECTDATA=( superid=superid
tl_name=nome
tl_connection=conexao
tl_beneficiary=beneficiaria
admin_name=responsavel
city=municipio
state=estado
tl_street=rua
tl_number=numero
tl_zipcode=cep
tl_neighborhood=bairro
geolocation=geolocalizacao
user_count=usuarios )
index=0;
# Collect telecentro's info
while [ $index != ${#COLLECTDATA[@]} ]
do
tagName=$(echo ${COLLECTDATA[$index]} | awk -F'=' '{print $1}')
collect=$(echo ${COLLECTDATA[$index]} | awk -F'=' '{print $2}')
value=$(cat ${CONFDIR}/telecentroInfo | grep $collect | awk -F'=' '{print $2}')
# Check if the data exists
! test -z '${value}' || exit $(($index + 2))
index=$(($index + 1))
printf "<$tagName>$value</$tagName>"
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment