diff options
author | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:45:12 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:45:12 +0100 |
commit | 2a0c6465b784e6c3663a333c2e8c862b193fc8dc (patch) | |
tree | 047ac98d688d1d2fc37d6782d417c9e66e448705 | |
parent | 69bc7a7a5a123fdec9b6cc16f2b9adb0d8ec91e6 (diff) | |
download | vyos-live-build-2a0c6465b784e6c3663a333c2e8c862b193fc8dc.tar.gz vyos-live-build-2a0c6465b784e6c3663a333c2e8c862b193fc8dc.zip |
Correcting variables names for standard and rescue package lists and tasks automagics for default flavours.
-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 f47d7819e..245bf205d 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -662,13 +662,13 @@ Set_defaults () ;; standard) - LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||') standard" - LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||') standard" + LH_PACKAGES_LISTS="$(echo ${LH_PACKAGES_LISTS} | sed -e 's|standard||') standard" + LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||') standard" ;; rescue) - LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|standard||' -e 's|rescue||') standard rescue" - LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|rescue||') standard rescue" + LH_PACKAGES_LISTS="$(echo ${LH_PACKAGES_LISTS} | sed -e 's|standard||' -e 's|rescue||') standard rescue" + LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|rescue||') standard rescue" ;; gnome-desktop) |