Fix stupid typo in chroot-script
authorMichael Prokop <mika@grml.org>
Mon, 16 Apr 2007 12:48:55 +0000 (14:48 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 16 Apr 2007 12:48:55 +0000 (14:48 +0200)
TODO
chroot-script
debian/changelog

diff --git a/TODO b/TODO
index 42317b9..d4ecb7b 100644 (file)
--- a/TODO
+++ b/TODO
@@ -6,7 +6,7 @@ TODO list for grml-debootstrap
   * grml-etc-core
   * grml-x + xserver-xorg [configuration of X]
 * support selection between DESKTOP/WORKSTATION and SERVER (provide default packages selection)
   * grml-etc-core
   * grml-x + xserver-xorg [configuration of X]
 * support selection between DESKTOP/WORKSTATION and SERVER (provide default packages selection)
-* support *full* automatic installation where not a single keypress is necessary
+* support *full* automatic installation where not a single keypress is necessary (in progress)
   -> support bootoption debian2hd for installation through bootoption on live-cd
 * support for LVM + SW-RAID [should work through installation into directory, needs testing though]
 * support rpmstrap (bootstrap a basic RPM-based system)
   -> support bootoption debian2hd for installation through bootoption on live-cd
 * support for LVM + SW-RAID [should work through installation into directory, needs testing though]
 * support rpmstrap (bootstrap a basic RPM-based system)
index bb6d7ad..7753bdb 100644 (file)
@@ -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.
 # 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.
-# Latest change: Mon Apr 16 13:12:14 CEST 2007 [mika]
+# Latest change: Mon Apr 16 14:48:41 CEST 2007 [mika]
 ################################################################################
 
 set -e # exit on any error
 ################################################################################
 
 set -e # exit on any error
@@ -89,7 +89,7 @@ packages() {
        exit 1
      else
        $APTUPDATE
        exit 1
      else
        $APTUPDATE
-       $APT $(cat /etc/debootstrap/packages) $GRMLPACKAGES
+       $APTINSTALL $(cat /etc/debootstrap/packages) $GRMLPACKAGES
      fi
   fi
 }
      fi
   fi
 }
index 9c51b48..34e6db0 100644 (file)
@@ -1,10 +1,12 @@
 grml-debootstrap (0.7) unstable; urgency=low
 
   * Support setting some variables via cmdline.
 grml-debootstrap (0.7) unstable; urgency=low
 
   * Support setting some variables via cmdline.
-  * Change logic of function execution.
-  * Improved error handling in several functions.
+  * Change logic of function execution and improved error handling
+    in some functions.
   * Use aptitude instead of apt-get in chroot-script, but
     only if it's available.
   * Use aptitude instead of apt-get in chroot-script, but
     only if it's available.
+  * Use DEBIAN_FRONTEND='noninteractive' so we avoid unnecessary
+    questions when installing. (Thanks, formorer!)
   * Added additional check to grub code for running sed on
     /boot/grub/menu.lst.
   * Updated TODO file.
   * Added additional check to grub code for running sed on
     /boot/grub/menu.lst.
   * Updated TODO file.