From dff496980bcc1f22278029ed040a89b4aa8a09e3 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Thu, 18 Sep 2008 01:33:17 +0200 Subject: [PATCH] Use apt-get instead of dpkg in removal of packages in grml-small. --- debian/changelog | 3 ++- etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index bda0675..8ede8e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,8 +7,9 @@ grml-live (0.9.3) unstable; urgency=low * Add PREREQ header to grml's initramfs-tools script, otherwise booting fails with "PANIC: Circular dependancy. Exiting." Thanks for debugging help, maximilian attems. + * Use apt-get instead of dpkg in removal of packages in grml-small. - -- Michael Prokop Mon, 15 Sep 2008 12:51:15 +0200 + -- Michael Prokop Thu, 18 Sep 2008 01:32:18 +0200 grml-live (0.9.2) unstable; urgency=low diff --git a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot index b5f193e..902bd02 100755 --- a/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot +++ b/etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2 or any later version. -# Latest change: Sat Sep 06 20:05:02 CEST 2008 [mika] +# Latest change: Thu Sep 18 01:32:11 CEST 2008 [mika] ################################################################################ set -e @@ -27,7 +27,7 @@ fi if ifclass GRML_SMALL ; then $ROOTCMD apt-get -y --purge remove aptitude for pkg in groff-base info locales man-db manpages nano; do - $ROOTCMD dpkg --purge $pkg || true + $ROOTCMD apt-get --purge $pkg || true done fi -- 2.1.4