Ensure use of "echo_i" where possible

In many instances 'echo "I:' construct was used where echo_i function
should have been.
This commit is contained in:
Michal Nowak
2020-10-15 16:27:30 +02:00
parent 216273c73b
commit 47862fc559
21 changed files with 142 additions and 130 deletions

View File

@@ -27,11 +27,11 @@ do
$PERL update.pl -s 10.53.0.2 -p 5300 zone00000$i.example. &
done
echo "I:waiting for background processes to finish"
echo_i "waiting for background processes to finish"
wait
echo "I:killing reload loop"
echo_i "killing reload loop"
kill `cat reload.pid`
echo "I:exit status: $status"
echo_i "exit status: $status"
[ $status -eq 0 ] || exit 1