We can now use a "pause" key in update.json to pause updates from specific sources.

This commit is contained in:
Steven Black 2022-05-13 12:20:37 -04:00
parent 8ded82cd4d
commit 0677b534b1
No known key found for this signature in database
GPG Key ID: 8B814B914974E6AF

View File

@ -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"):