Updating tasks handling for squeeze.
This commit is contained in:
parent
30a6e3b2ba
commit
6e9125e463
|
@ -618,22 +618,56 @@ Set_defaults ()
|
|||
|
||||
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"
|
||||
case "${LH_DISTRIBUTION}" in
|
||||
lenny)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|gnome-desktop||' -e 's|desktop||') standard gnome-desktop desktop"
|
||||
;;
|
||||
|
||||
*)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|gnome-desktop||' -e 's|desktop||' -e 's|laptop||') standard gnome-desktop desktop laptop"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
||||
kde-desktop)
|
||||
LH_PACKAGES_LISTS="$(echo ${LH_PACKAGES_LISTS} | sed -e 's|kde-desktop||') standard-x11"
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|kde-desktop||' -e 's|desktop||') standard kde-desktop desktop"
|
||||
|
||||
case "${LH_DISTRIBUTION}" in
|
||||
lenny)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|kde-desktop||' -e 's|desktop||') standard kde-desktop desktop"
|
||||
;;
|
||||
|
||||
*)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|kde-desktop||' -e 's|desktop||' -e 's|laptop||') standard kde-desktop desktop laptop"
|
||||
esac
|
||||
;;
|
||||
|
||||
lxde-desktop)
|
||||
LH_PACKAGES_LISTS="$(echo ${LH_PACKAGES_LISTS} | sed -e 's|lxde-desktop||') standard-x11"
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|lxde-desktop||' -e 's|desktop||') standard lxde-desktop desktop"
|
||||
|
||||
case "${LH_DISTRIBUTION}" in
|
||||
lenny)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|lxde-desktop||' -e 's|desktop||') standard lxde-desktop desktop"
|
||||
;;
|
||||
|
||||
*)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|lxde-desktop||' -e 's|desktop||' -e 's|laptop||') standard lxde-desktop desktop laptop"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
||||
xfce-desktop)
|
||||
LH_PACKAGES_LISTS="$(echo ${LH_PACKAGES_LISTS} | sed -e 's|xfce-desktop||') standard-x11"
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|xfce-desktop||' -e 's|desktop||') standard xfce-desktop desktop"
|
||||
|
||||
case "${LH_DISTRIBUTION}" in
|
||||
lenny)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|xfce-desktop||' -e 's|desktop||') standard xfce-desktop desktop"
|
||||
;;
|
||||
|
||||
*)
|
||||
LH_TASKS="$(echo ${LH_TASKS} | sed -e 's|standard||' -e 's|xfce-desktop||' -e 's|desktop||' -e 's|laptop||') standard xfce-desktop desktop laptop"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue