diff options
author | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:43:32 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-12 13:43:32 +0100 |
commit | ddbf68ff41f8d2e31f1eb969c2bf41cd2db87c22 (patch) | |
tree | c43ca1897474f97e39c2f25506733a1c37918586 /functions | |
parent | 16d536109483fb7123292cf3e37ff326f04520fe (diff) | |
download | vyos-live-build-ddbf68ff41f8d2e31f1eb969c2bf41cd2db87c22.tar.gz vyos-live-build-ddbf68ff41f8d2e31f1eb969c2bf41cd2db87c22.zip |
Also including the standard task when building the rescue default flavour.
Diffstat (limited to 'functions')
-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 3d695069c..53509cbbc 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -735,6 +735,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) LB_PACKAGE_LISTS="$(echo ${LB_PACKAGE_LISTS} | sed -e 's|gnome-desktop||') standard-x11" LB_TASKS="$(echo ${LB_TASKS} | sed -e 's|standard||' -e 's|gnome-desktop||' -e 's|desktop||' -e 's|laptop||') standard gnome-desktop desktop laptop" |