From 2f8102726043499f34fe9672023f6b7a9e8470c7 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Sun, 22 Jul 2012 23:45:18 +0100 Subject: [PATCH] live-build/auto/config: Don't install lupin-casper on ubuntu-server images. --- debian/changelog | 7 +++++++ live-build/auto/config | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 2dd9630c..e04b036e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.70) UNRELEASED; urgency=low + + * live-build/auto/config: Don't install lupin-casper on ubuntu-server + images. + + -- Colin Watson Sun, 22 Jul 2012 23:44:49 +0100 + livecd-rootfs (2.69) quantal; urgency=low * live-build/auto/config: Add server task to ubuntu-server images. diff --git a/live-build/auto/config b/live-build/auto/config index fb15754c..8cf7ef87 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -90,7 +90,9 @@ case $IMAGEFORMAT in ;; *) - add_package live lupin-casper + if [ "$PROJECT" != ubuntu-server ]; then + add_package live lupin-casper + fi ;; esac