From 3920fed88dd90e5e2f36d8a612a4b591f9948ccf Mon Sep 17 00:00:00 2001 From: agessaman Date: Sun, 9 Nov 2025 12:02:17 -0800 Subject: [PATCH] updated installers to include PACKETCAPTURE_UPLOAD_PACKET_TYPES line, commented out for later user configuration --- install.ps1 | 5 +++++ install.sh | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/install.ps1 b/install.ps1 index 42a187c..a98fcf2 100644 --- a/install.ps1 +++ b/install.ps1 @@ -1160,6 +1160,11 @@ PACKETCAPTURE_IATA=XXX # Advert Settings PACKETCAPTURE_ADVERT_INTERVAL_HOURS=11 +# Packet Type Filtering (comma-separated list of packet type numbers to upload to MQTT) +# Leave commented out to upload all packet types +# Example: PACKETCAPTURE_UPLOAD_PACKET_TYPES=2,4 (upload only TXT_MSG and ADVERT) +#PACKETCAPTURE_UPLOAD_PACKET_TYPES= + # Logging Settings PACKETCAPTURE_LOG_LEVEL=INFO "@ diff --git a/install.sh b/install.sh index 65e4288..2c21d09 100755 --- a/install.sh +++ b/install.sh @@ -1088,6 +1088,11 @@ PACKETCAPTURE_IATA=XXX # Advert Settings PACKETCAPTURE_ADVERT_INTERVAL_HOURS=11 +# Packet Type Filtering (comma-separated list of packet type numbers to upload to MQTT) +# Leave commented out to upload all packet types +# Example: PACKETCAPTURE_UPLOAD_PACKET_TYPES=2,4 (upload only TXT_MSG and ADVERT) +#PACKETCAPTURE_UPLOAD_PACKET_TYPES= + # Logging Settings PACKETCAPTURE_LOG_LEVEL=INFO EOF