diff options
author | Daniel Baumann <daniel@debian.org> | 2008-01-17 18:15:11 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:35:54 +0100 |
commit | 74b2c5778d24951accb7a46b120390bdfbb34fc2 (patch) | |
tree | 04e8efeebfc81452c8d9ca22ef15ee21337cb805 /functions/defaults.sh | |
parent | 349dfe0e5bbfd637fe33259bd66957057aaf14be (diff) | |
download | vyos-live-build-74b2c5778d24951accb7a46b120390bdfbb34fc2.tar.gz vyos-live-build-74b2c5778d24951accb7a46b120390bdfbb34fc2.zip |
Renaming mini flavour to stripped to avoid confusion, thanks to Fathi Boudra <fabo@debian.org> and Ben Armstrong <synrg@debian.org>.
Diffstat (limited to 'functions/defaults.sh')
-rwxr-xr-x | functions/defaults.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 38b948e44..4214db14b 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -431,7 +431,7 @@ Set_defaults () for LIST in ${LH_PACKAGES_LISTS} do case "${LIST}" in - mini|minimal) + stripped|minimal) LH_APT="apt-get" ;; @@ -637,13 +637,13 @@ Check_defaults () fi fi - if [ "${LH_PACKAGES_LISTS}" = "mini" ] || [ "${LH_PACKAGES_LISTS}" = "minimal" ] + if [ "${LH_PACKAGES_LISTS}" = "stripped" ] || [ "${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." + Echo_warning "used in the stripped/minimal package lists." fi fi } |