Further bugfixes fixed from shellcheck

This commit is contained in:
Eric Renfro 2017-08-19 19:18:24 -04:00
parent 0f9adac2cd
commit fe249830ed
2 changed files with 4 additions and 9 deletions

View File

@ -1,6 +1,5 @@
plugin_name=$1
check_record=$2
updateerrors=0
if [[ -z "$check_record" ]]; then
@ -9,14 +8,12 @@ if [[ -z "$check_record" ]]; then
else
if [[ -r "$check_record" ]]; then
for d in $(getRecords "$check_record"); do
check-update 4 "$check_record"
if [[ $? -ne 0 ]]; then
if check-update 4 "$d"; then
let updateerrors++
fi
done
else
check-update 4 "$check_record"
if [[ $? -ne 0 ]]; then
if check-update 4 "$check_record"; then
let updateerrors++
fi
fi

View File

@ -8,14 +8,12 @@ if [[ -z "$check_record" ]]; then
else
if [[ -r "$check_record" ]]; then
for d in $(getRecords "$check_record"); do
check-update 6 "$check_record"
if [[ $? -ne 0 ]]; then
if ! check-update 6 "$check_record"; then
let updateerrors++
fi
done
else
check-update 6 "$check_record"
if [[ $? -ne 0 ]]; then
if ! check-update 6 "$check_record"; then
let updateerrors++
fi
fi