diff options
author | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:44:17 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:44:17 +0100 |
commit | 69bc7a7a5a123fdec9b6cc16f2b9adb0d8ec91e6 (patch) | |
tree | f5cb61ee207f710900a1440139d09d8fa5ee6a40 | |
parent | 31bed2c398071b03b0578a124f1ed86edc1192ba (diff) | |
download | vyos-live-build-69bc7a7a5a123fdec9b6cc16f2b9adb0d8ec91e6.tar.gz vyos-live-build-69bc7a7a5a123fdec9b6cc16f2b9adb0d8ec91e6.zip |
Also including the standard task when building the rescue default flavour.
-rwxr-xr-x | functions/defaults.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index 5b9a992d8..f47d7819e 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -666,6 +666,11 @@ Set_defaults () LB_TASKS="$(echo ${LB_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" + ;; + gnome-desktop) LH_PACKAGES_LISTS="$(echo ${LH_PACKAGES_LISTS} | sed -e 's|gnome-desktop||') standard-x11" LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|gnome-desktop||' -e 's|desktop||') standard gnome-desktop desktop" |