From fdbd3c03d1d0e1a85a9a8fc58d22e98e33e40d4d Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 2 Jan 2015 00:06:29 +0100 Subject: live: also build debian gnome+xfce jessie live images --- bin/live-build.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'bin/live-build.sh') diff --git a/bin/live-build.sh b/bin/live-build.sh index e7163eae..f5163eca 100755 --- a/bin/live-build.sh +++ b/bin/live-build.sh @@ -12,23 +12,24 @@ cleanup_all() { } TMPDIR=$(mktemp --tmpdir=/srv/live-build -d) -trap cleanup_all INT TERM EXIT - cd $TMPDIR +trap cleanup_all INT TERM EXIT # $1 is used for the hostname and username -# $2 is standalone... +# $2 is choosing the flavor lb config --distribution jessie --bootappend-live "boot=live config hostname=$1 username=$1" case "$2" in standalone) echo education-standalone > config/package-lists/live.list.chroot ;; + gnome) echo gnome > config/package-lists/live.list.chroot + ;; + xfce) echo xfce4 > config/package-lists/live.list.chroot + ;; *) ;; esac sudo lb build -ls -la *.iso || true mkdir -p /srv/live-build/results -cp *.iso /srv/live-build/results -# FIXME: use proper filenames +cp -v live-image-amd64.hybrid.iso /srv/live-build/results/$1_$2_live_amd64.iso cleanup_all trap - INT TERM EXIT -- cgit v1.2.3-54-g00ecf