From 0677b534b17005943694c869426ca3b97bd0a46b Mon Sep 17 00:00:00 2001 From: Steven Black Date: Fri, 13 May 2022 12:20:37 -0400 Subject: [PATCH] We can now use a "pause" key in update.json to pause updates from specific sources. --- updateHostsFile.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/updateHostsFile.py b/updateHostsFile.py index 670e6ca1a..fb7119443 100644 --- a/updateHostsFile.py +++ b/updateHostsFile.py @@ -738,6 +738,12 @@ def update_all_sources(source_data_filename, host_filename): update_file = open(source, "r", encoding="UTF-8") update_data = json.load(update_file) update_file.close() + + # we can pause updating any given hosts source. + # if the update.json "pause" key is missing, don't pause. + if update_data.get('pause', False): + continue + update_url = update_data["url"] update_transforms = [] if update_data.get("transforms"):