diff options
author | Daniel Baumann <daniel@debian.org> | 2010-11-21 17:17:48 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:20:35 +0100 |
commit | da2c2b0bcc775451d10d7dab9b0cbe2f604c6d25 (patch) | |
tree | f3b6e56fdb490a02b75d287d5954fa3b375b95ed /functions/defaults.sh | |
parent | ad7824af8dec8d7f3591fdf269b8402671357184 (diff) | |
download | vyos-live-build-da2c2b0bcc775451d10d7dab9b0cbe2f604c6d25.tar.gz vyos-live-build-da2c2b0bcc775451d10d7dab9b0cbe2f604c6d25.zip |
Renaming --binary-indices to --apt-indices for consistency.
Diffstat (limited to 'functions/defaults.sh')
-rwxr-xr-x | functions/defaults.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 177f4a88a..af027c550 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -820,9 +820,9 @@ Set_defaults () # Setting apt indices if echo ${LB_PACKAGES_LISTS} | grep -qs -E "(stripped|minimal)\b" then - LB_BINARY_INDICES="${LB_BINARY_INDICES:-none}" + LB_APT_INDICES="${LB_APT_INDICES:-none}" else - LB_BINARY_INDICES="${LB_BINARY_INDICES:-true}" + LB_APT_INDICES="${LB_APT_INDICES:-true}" fi # Setting bootloader @@ -1186,9 +1186,9 @@ Check_defaults () if echo ${LB_PACKAGES_LISTS} | grep -qs -E "(stripped|minimal)\b" then - if [ "${LB_BINARY_INDICES}" = "true" ] + if [ "${LB_APT_INDICES}" = "true" ] then - Echo_warning "You have selected hook to minimise image size but you are still including package indices with your value of LB_BINARY_INDICES." + Echo_warning "You have selected hook to minimise image size but you are still including package indices with your value of LB_APT_INDICES." fi fi |