diff options
author | Holger Levsen <holger@layer-acht.org> | 2013-03-07 11:35:03 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2013-03-07 11:35:03 +0100 |
commit | f3f63ff3017d567a628c91dc425d6ae7bcaaae24 (patch) | |
tree | 5c162a4d01af8a89be09891d2853cc0c038a4443 /bin | |
parent | 1ff37cafb9515eed99265218f554fe59aff66768 (diff) | |
download | jenkins.debian.net-f3f63ff3017d567a628c91dc425d6ae7bcaaae24.tar.xz |
chroot-installation: add tests for full kde desktop, thanks to Pino Toscano for the idea
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/chroot-installation.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index fe284efe..f8d10c3f 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2012 Holger Levsen <holger@layer-acht.org> +# Copyright 2012,2013 Holger Levsen <holger@layer-acht.org> # released under the GPLv=2 # $1 = base distro @@ -140,7 +140,7 @@ case $1 in ;; esac bootstrap $DISTRO -FULL_DESKTOP="$SPECIFIC desktop-base gnome kde-plasma-desktop xfce4 lxde vlc evince iceweasel chromium cups build-essential devscripts mplayer wine texlive-full asciidoc vim emacs" +FULL_DESKTOP="$SPECIFIC desktop-base gnome kde-plasma-desktop kde-full kde-standard xfce4 lxde vlc evince iceweasel chromium cups build-essential devscripts mplayer wine texlive-full asciidoc vim emacs" if [ "$2" != "" ] ; then case $2 in @@ -149,6 +149,8 @@ if [ "$2" != "" ] ; then ;; kde) install_packages kde kde-plasma-desktop desktop-base ;; + kde-full) install_packages kde kde-full kde-standard desktop-base + ;; xfce) install_packages xfce xfce4 desktop-base ;; lxde) install_packages lxde lxde desktop-base |