armbian-build/lib/functions/logging
cantalupo555 504ccc45d2 fix: replace comm with grep to support uutils coreutils
Ubuntu 25.04+ replaced GNU coreutils with uutils coreutils, a Rust-based
reimplementation of Unix core utilities. These are different projects
with the same package name:

- GNU coreutils 9.x (C) - Ubuntu ≤24.04
- uutils coreutils 0.x (Rust) - Ubuntu ≥25.04

The uutils comm doesn't recognize sort output as sorted, causing
"comm: file is not in sorted order" errors.

Replace comm patterns with:
- grep -vxFf for set difference (lines in B but not in A)
- sort | uniq -d for finding duplicates

These alternatives don't depend on comm, ensuring compatibility
with both GNU and uutils coreutils.
2026-01-02 21:52:32 +01:00
..
capture.sh fix: replace comm with grep to support uutils coreutils 2026-01-02 21:52:32 +01:00
debug-dump.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
display-alert.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
export-logs.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
logging.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
runners.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
section-logging.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
stacktraces.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
trap-logging.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00
traps.sh chore: update copyright years to 2026 2025-12-25 12:03:34 +01:00