Print a warning when package caching is disabled but d-i integration is enabled.

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
This commit is contained in:
Chris Lamb 2008-08-07 20:06:39 +01:00
parent 6f870a5be2
commit 1376d237dc
1 changed files with 11 additions and 0 deletions

View File

@ -686,4 +686,15 @@ Check_defaults ()
Echo_warning "used in the stripped/minimal package lists."
fi
fi
if [ "${LH_DEBIAN_INSTALLER}" != "disabled" ]
then
if ! echo ${LH_CACHE_STAGES} | grep -qs "bootstrap\b" || [ "${LH_CACHE}" != "enabled" ] || [ "${LH_CACHE_PACKAGES}" != "enabled" ]
then
Echo_warning "You have selected values of LH_CACHE, LH_CACHE_PACKAGES, LH_CACHE_STAGES and"
Echo_warning "LH_DEBIAN_INSTALLER which will result in 'bootstrap' packages not being"
Echo_warning "cached. This is a possible unsafe configuration as the bootstrap packages"
Echo_warning "are re-used when integrating the Debian Installer."
fi
fi
}