From de2cb2c60f3a946b75841516c14f113bdd4f625b Mon Sep 17 00:00:00 2001 From: KF7EEL Date: Wed, 23 Dec 2020 12:44:40 -0800 Subject: [PATCH] Read MASTER for APRS_ENABLED --- config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/config.py b/config.py index 1caf06e..5109050 100644 --- a/config.py +++ b/config.py @@ -280,6 +280,7 @@ def build_config(_config_file): CONFIG['SYSTEMS'].update({section: { 'MODE': config.get(section, 'MODE'), 'ENABLED': config.getboolean(section, 'ENABLED'), + 'APRS_ENABLED': config.getboolean(section, 'APRS_ENABLED'), 'REPEAT': config.getboolean(section, 'REPEAT'), 'MAX_PEERS': config.getint(section, 'MAX_PEERS'), 'IP': gethostbyname(config.get(section, 'IP')),