diff options
author | Daniel Baumann <daniel@debian.org> | 2010-09-02 23:56:25 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:20 +0100 |
commit | e6920317753f0fa6564c035dc11195619654011c (patch) | |
tree | 8934726f8439bd0e2e4ca31d3ef0c0a6a3627e4a | |
parent | b49b72172c2d3afd3054f5441fec21fcb716f025 (diff) | |
download | vyos-live-build-e6920317753f0fa6564c035dc11195619654011c.tar.gz vyos-live-build-e6920317753f0fa6564c035dc11195619654011c.zip |
Updating gdm handling for lxde.
-rwxr-xr-x | scripts/build/chroot_hacks | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/scripts/build/chroot_hacks b/scripts/build/chroot_hacks index 1fd3aa822..4417e332a 100755 --- a/scripts/build/chroot_hacks +++ b/scripts/build/chroot_hacks @@ -38,19 +38,24 @@ Check_lockfile .lock # Creating lock file Create_lockfile .lock -# Handling default desktop configuration -for TASK in ${LH_TASKS} -do - case "${LH_DISTRIBUTION}" in - lenny) +case "${LH_DISTRIBUTION}" in + squeeze|sid) + if echo "${LH_TASKS}" | grep -qs lxde + then GDM="gdm" - ;; - - *) + else GDM="gdm3" - ;; - esac + fi + ;; + + *) + GDM="gdm" + ;; +esac +# Handling default desktop configuration +for TASK in ${LH_TASKS} +do case "${TASK}" in gnome-desktop) # gnome is the only desktop environment in this image |