Adding comments

This commit is contained in:
Alarig Le Lay 2019-03-05 12:02:14 +01:00
parent 2d306ec392
commit 8b0ceb8e34
1 changed files with 6 additions and 2 deletions

View File

@ -25,13 +25,17 @@ checkconfig() {
} }
check_run() { check_run() {
STATE=$(birdc -s /var/run/bird.ctl 'configure check' | \ # Check if the bird parser returns what we want
# We cant use $? because its always 0 if the sock works
STATE=$(birdc -s ${SOCK} 'configure check' | \
grep 'Configuration OK') grep 'Configuration OK')
if [ -n "${STATE}" ]; then if [ -n "${STATE}" ]; then
return 0 return 0
else else
eerror "$(birdc -s /var/run/bird.ctl 'configure check' | \ # We remove the first two lines (garbage informations), the
# errors begin at the third
eerror "$(birdc -s ${SOCK} 'configure check' | \
sed '1d;2d')" sed '1d;2d')"
return 1 return 1
fi fi