Use apt-get instead of dpkg in removal of packages in grml-small.
authorMichael Prokop <devnull@localhost>
Wed, 17 Sep 2008 23:33:17 +0000 (01:33 +0200)
committerMichael Prokop <devnull@localhost>
Wed, 17 Sep 2008 23:33:17 +0000 (01:33 +0200)
debian/changelog
etc/grml/fai/config/scripts/GRMLBASE/98-clean-chroot

index bda0675..8ede8e1 100644 (file)
@@ -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.
   * 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 <mika@grml.org>  Mon, 15 Sep 2008 12:51:15 +0200
+ -- Michael Prokop <mika@grml.org>  Thu, 18 Sep 2008 01:32:18 +0200
 
 grml-live (0.9.2) unstable; urgency=low
 
 
 grml-live (0.9.2) unstable; urgency=low
 
index b5f193e..902bd02 100755 (executable)
@@ -4,7 +4,7 @@
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # Bug-Reports:   see http://grml.org/bugs/
 # License:       This file is licensed under the GPL v2 or any later version.
 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
 # 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
 ################################################################################
 
 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
 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
 
    done
 fi