From 4a270b9f65578cefc147c2f9108330bb8e547f94 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Thu, 27 Feb 2025 11:07:42 +0100 Subject: [PATCH] Fix check --- templates/application/scan_external_mounts.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/application/scan_external_mounts.sh b/templates/application/scan_external_mounts.sh index ff62872..aed89b6 100644 --- a/templates/application/scan_external_mounts.sh +++ b/templates/application/scan_external_mounts.sh @@ -7,12 +7,14 @@ if [[ $(pgrep -f "${0}" | wc -l) -eq 2 ]]; then # We sleep a deterministic amount of time, which will be between 0 an 128 m and allways the same within # a specific host, but will differ between hosts sleep $((16#$(ip a | grep "link/ether" | head -1 | awk -F ':' '{print $6}' | awk '{print $1}') / 2))m + errors='' for container in $(get_containers); do error_ids="${error_ids} ${container}: " for id in $(nocc "${container}" files_external:list --all --output json | jq '.[].mount_id' | jq .); do nocc "${container}" files_external:scan "${id}" | grep Error # shellcheck disable=SC2181 if [[ ${?} -eq 0 ]]; then + errors="${errors} ${id}" error_ids="${error_ids} ${id}" fi done @@ -23,8 +25,9 @@ else exit 0 fi -if [[ -n "${error_ids}" ]]; then +if [[ -n "${errors}" ]]; then echo "Errors found in the following mounts: ${error_ids}" exit 1 fi +echo "No errors found" exit 0