diff options
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | bin/chroot-installation.sh | 10 |
2 files changed, 6 insertions, 6 deletions
@@ -89,7 +89,7 @@ Installation tests inside chroot environments. * $distro-install jobs (and $distro-install+upgrade jobs): ** `debootstrap $distro`, install a *$set_of_packages* (and upgrade to *$2nd_distro*) -** these $set_of_packages exist: 'gnome', 'kde', 'kde-full', 'lxde', 'xfc', 'full_desktop' (all five desktops plus `vlc evince iceweasel chromium cups build-essential devscripts mplayer wine texlive-full asciidoc vim emacs`) and 'develop' +** these $set_of_packages exist: 'gnome', 'kde', 'kde-full', 'lxde', 'xfc', 'full_desktop' (all five desktops plus `vlc evince iceweasel chromium cups build-essential devscripts wine texlive-full asciidoc vim emacs` and (`libreoffice virt-manager mplayer2` (jessie/sid) or `openoffice virtualbox mplayer` (squeeze/wheezy)) and 'develop' *** install is done with `apt-get install`, except for 'develop' where `apt-get build-dep` is used to install the build dependencies of these packages. === webcheck jobs diff --git a/bin/chroot-installation.sh b/bin/chroot-installation.sh index 054bd287..ffd6e835 100755 --- a/bin/chroot-installation.sh +++ b/bin/chroot-installation.sh @@ -127,16 +127,16 @@ trap cleanup_all INT TERM EXIT case $1 in squeeze) DISTRO="squeeze" - SPECIFIC="openoffice.org virtualbox-ose" + SPECIFIC="openoffice.org virtualbox-ose mplayer" ;; wheezy) DISTRO="wheezy" - SPECIFIC="libreoffice virtualbox" + SPECIFIC="libreoffice virtualbox mplayer" ;; jessie) DISTRO="jessie" - SPECIFIC="libreoffice virt-manager" + SPECIFIC="libreoffice virt-manager mplayer2" ;; sid) DISTRO="sid" - SPECIFIC="libreoffice virt-manager" + SPECIFIC="libreoffice virt-manager mplayer2" ;; *) echo "unsupported distro." exit 1 @@ -145,7 +145,7 @@ esac bootstrap $DISTRO if [ "$2" != "" ] ; then - 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" + FULL_DESKTOP="$SPECIFIC desktop-base gnome kde-plasma-desktop kde-full kde-standard xfce4 lxde vlc evince iceweasel chromium cups build-essential devscripts wine texlive-full asciidoc vim emacs" case $2 in none) ;; gnome) install_packages gnome gnome desktop-base |