Handle bird error

This commit is contained in:
Alarig Le Lay 2019-02-04 11:01:07 +01:00
parent 1ebc61e84a
commit 86e7b3d20c
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ DIR="$(mktemp -d '/tmp/nrpe-bird.XXXX')"
# The sed removes the first two lines (BIRD 2.0.2 ready and Name Proto blah)
birdc 'show protocols all' 2>${DIR}/bird-err | sed '1,2d;$d' | \
awk -v RS= -v DIR=$DIR '{print > (DIR "/" $1 ".txt")}'
if [ $(cat ${DIR}/bird-err) != '' ]; then
if [ "$(cat ${DIR}/bird-err)" != '' ]; then
printf "ERROR: $(cat ${DIR}/bird-err)\n"
rm -r ${DIR}
exit 2