diff options
-rwxr-xr-x | functions/defaults.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 0d89f4c..a3ab9a1 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -636,4 +636,14 @@ Check_defaults () Echo_warning "part of the etch distribution." fi fi + + if [ "${LH_PACKAGES_LISTS}" = "mini" ] || [ "${LH_PACKAGES_LISTS}" = "minimal" ] + then + if [ "${LH_APT}" = "aptitude" ] + then + Echo_warning "You selected LH_PACKAGES_LISTS='"${LH_PACKAGES_LIST}"' and LH_APT='aptitude'" + Echo_warning "This is a possible unsafe configuration as aptitude is not" + Echo_warning "used in the mini/minimal package lists." + fi + fi } |