health-check.sh: remove union remote check

This commit is contained in:
Justin Oros
2026-04-19 22:39:04 -07:00
parent a8b10a1814
commit e3a12c0f6e

View File

@@ -199,13 +199,6 @@ check_hub() {
done < "$REGISTRY"
echo ""
local union_remotes
union_remotes=$(grep -A1 'type = union' "$RCLONE_CONF" 2>/dev/null | grep -v 'type = union' | grep -v '^--$' || true)
if [ -n "$union_remotes" ]; then
ok "Union remote(s) configured in rclone.conf"
else
warn "No union remotes configured"
fi
}
check_common