foundagain for precache OnDemand (#878)

Makes a cache delete exemption for items that are both precache and OnDemand
This commit is contained in:
aysiu
2018-11-20 20:46:03 -08:00
committed by Greg Neagle
parent 7161744729
commit 0264fc7007

View File

@@ -404,6 +404,11 @@ def install_with_info(
foundagain = True
break
# check to see if the item is both precache and OnDemand
if not foundagain and item.get('precache') and item.get('OnDemand'):
foundagain = True
break
# need to check skipped_installs as well
if not foundagain:
for skipped_item in skipped_installs: