From 2bd659c6a6aec46e479936a1b18bfd1a1d72aa5b Mon Sep 17 00:00:00 2001 From: James Smith Date: Mon, 22 Dec 2025 13:07:52 +0000 Subject: [PATCH] Don't kill dump1090 on startup - may be a system service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- intercept.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/intercept.py b/intercept.py index efe5429..fa96f36 100755 --- a/intercept.py +++ b/intercept.py @@ -12803,8 +12803,9 @@ def monitor_iridium(process): def cleanup_stale_processes(): - """Kill any stale processes from previous runs.""" - processes_to_kill = ['dump1090', 'rtl_adsb', 'rtl_433', 'multimon-ng', 'rtl_fm'] + """Kill any stale processes from previous runs (but not system services).""" + # Note: dump1090 is NOT included here as users may run it as a system service + processes_to_kill = ['rtl_adsb', 'rtl_433', 'multimon-ng', 'rtl_fm'] for proc_name in processes_to_kill: try: subprocess.run(['pkill', '-9', proc_name], capture_output=True)