diff options
| author | Chris Lamb <chris@chris-lamb.co.uk> | 2008-08-07 20:06:39 +0100 | 
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:37 +0100 | 
| commit | b07f1ccc01ff033baf6fb2ccef48778957b3f89e (patch) | |
| tree | 1c147b2570b9a477f1c56b3e6cb9952f5ce7a1ba | |
| parent | 38a545b3d186e72677cacc0ce56801e3acead821 (diff) | |
| download | vyos-live-build-b07f1ccc01ff033baf6fb2ccef48778957b3f89e.tar.gz vyos-live-build-b07f1ccc01ff033baf6fb2ccef48778957b3f89e.zip | |
Print a warning when package caching is disabled but d-i integration is enabled.
| -rwxr-xr-x | functions/defaults.sh | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/functions/defaults.sh b/functions/defaults.sh index 4bf3f749d..b8be125eb 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -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  } | 
