Follow symlinks

This commit is contained in:
Alexandre
2024-10-29 09:52:01 +01:00
committed by GitHub
parent f4d3327ebc
commit 395c3788d1

View File

@@ -69,7 +69,7 @@ while true; do
fi fi
# Check recorder state and queue length # Check recorder state and queue length
wav_count=$(find "$ingest_dir" -maxdepth 1 -name '*.wav' | wc -l) wav_count=$(find -L "$ingest_dir" -maxdepth 1 -name '*.wav' | wc -l)
service_state=$(systemctl is-active "$srv") service_state=$(systemctl is-active "$srv")
analysis_state=$(systemctl is-active "$srv2") analysis_state=$(systemctl is-active "$srv2")