Warning!

Notice: the grml team is migrating from Mercurial to Git.
Please visit git.grml.org instead!

Fix stupid typo in chroot-script
authorMichael Prokop <mika@grml.org>
Mon Apr 16 14:48:55 2007 +0200 (19 months ago)
changeset 1198ab6b6dc6938
manifest8ab6b6dc6938
parent 118805d6fb99a0b
child 12031f3265882e8
Fix stupid typo in chroot-script
TODO
chroot-script
debian/changelog
--- a/TODO Mon Apr 16 14:17:30 2007 +0200
+++ b/TODO Mon Apr 16 14:48:55 2007 +0200
@@ -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)
-* 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)
--- a/chroot-script Mon Apr 16 14:17:30 2007 +0200
+++ b/chroot-script Mon Apr 16 14:48:55 2007 +0200
@@ -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.
-# 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
@@ -89,7 +89,7 @@ packages() {
exit 1
else
$APTUPDATE
- $APT $(cat /etc/debootstrap/packages) $GRMLPACKAGES
+ $APTINSTALL $(cat /etc/debootstrap/packages) $GRMLPACKAGES
fi
fi
}
--- a/debian/changelog Mon Apr 16 14:17:30 2007 +0200
+++ b/debian/changelog Mon Apr 16 14:48:55 2007 +0200
@@ -1,10 +1,12 @@ grml-debootstrap (0.7) unstable; urgency
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 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.