Update docs and changelog
authorMichael Prokop <mika@grml.org>
Thu, 20 Nov 2008 13:46:40 +0000 (14:46 +0100)
committerMichael Prokop <mika@grml.org>
Thu, 20 Nov 2008 13:46:40 +0000 (14:46 +0100)
debian/changelog
grml-debootstrap.8.txt
zsh-completion

index 529a455..5c62f61 100644 (file)
@@ -24,8 +24,11 @@ grml-debootstrap (0.23) unstable; urgency=low
   * Edit /etc/network/interfaces as well if the file exists already,
     we definitely need at least a loopback interface.
   * Adjust hostname in /etc/postfix/main.cf.
   * Edit /etc/network/interfaces as well if the file exists already,
     we definitely need at least a loopback interface.
   * Adjust hostname in /etc/postfix/main.cf.
+  * Unify the --bootappend option, it's not --boot_append (thanks for
+    the hint, Tong Sun).
+  * Support execution of further scripts via --scripts and --chroot-scripts.
 
 
- -- Michael Prokop <mika@grml.org>  Wed, 12 Nov 2008 18:19:01 +0100
+ -- Michael Prokop <mika@grml.org>  Thu, 20 Nov 2008 14:45:19 +0100
 
 grml-debootstrap (0.22) unstable; urgency=low
 
 
 grml-debootstrap (0.22) unstable; urgency=low
 
index a542304..dbdc209 100644 (file)
@@ -31,7 +31,7 @@ CAUTION: The grml team does not take responsibility for loss of any data!
 Options and environment variables
 ---------------------------------
 
 Options and environment variables
 ---------------------------------
 
-*--boot_append* <_appendline for the kernel_>::
+*--bootappend* <_appendline for the kernel_>::
     Specify appendline for the kernel.
     E.g. "_pci=nomsi_"
 
     Specify appendline for the kernel.
     E.g. "_pci=nomsi_"
 
@@ -45,6 +45,9 @@ Options and environment variables
     Use specified file for preseeding Debian packages instead of using
     the default <confdir>/debconf-selections.
 
     Use specified file for preseeding Debian packages instead of using
     the default <confdir>/debconf-selections.
 
+*--debopt* <_params_>::
+    Extra parameters passed to the debootstrap.
+
 *--groot* <_device_>::
     Specify root device for usage in grub (corresponds with $TARGET).
     Again, use grub syntax for specifying.
 *--groot* <_device_>::
     Specify root device for usage in grub (corresponds with $TARGET).
     Again, use grub syntax for specifying.
@@ -75,13 +78,17 @@ Options and environment variables
     specifying the mirror also sets the chrootmirror to the given value.
     Corresponding with configuration variables MIRROR and CHROOTMIRROR.
 
     specifying the mirror also sets the chrootmirror to the given value.
     Corresponding with configuration variables MIRROR and CHROOTMIRROR.
 
+*--nodebootstrap*::
+    Skip debootstrap, only do configuration to the target.
+
 *-p*, *--mntpoint* <_/mntpoint_>::
     Specify mountpoint that should be used for mounting the target system.
     Corresponding with configuration variable MNTPOINT.
 
 *-p*, *--mntpoint* <_/mntpoint_>::
     Specify mountpoint that should be used for mounting the target system.
     Corresponding with configuration variable MNTPOINT.
 
-*--packages* <_file_>::
+*--packages* [<_file_>]::
     Use specified file as list for packages that should be installed instead of
     Use specified file as list for packages that should be installed instead of
-    the default package list file <confdir>/packages.
+    the default package list file <confdir>/packages. If no file parameter is given
+    it activates the default package list file <confdir>/packages.
 
 *--password* <_password_>::
     Use specified password as password for user root. Use with caution, as your
 
 *--password* <_password_>::
     Use specified password as password for user root. Use with caution, as your
index 0f6f366..7988af4 100644 (file)
@@ -5,7 +5,6 @@
 # Authors:       grml-team (grml.org), (c) Frank Terbeck <ft@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) Frank Terbeck <ft@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 23 13:03:08 CEST 2007 [mika]
 ################################################################################
 
 _arguments -s                                                                                   \
 ################################################################################
 
 _arguments -s                                                                                   \
@@ -18,7 +17,7 @@ _arguments -s
   '--grub[installation device for grub]:grub syntax'                                            \
   '--groot[root device for usage in grub]:grub syntax'                                          \
   '--password[specify password for root user]'                                                 \
   '--grub[installation device for grub]:grub syntax'                                            \
   '--groot[root device for usage in grub]:grub syntax'                                          \
   '--password[specify password for root user]'                                                 \
-  '--boot_append[appendline for kernel]'
+  '--bootappend[appendline for kernel]'
 
 ## END OF FILE #################################################################
 # vim:ft=zsh
 
 ## END OF FILE #################################################################
 # vim:ft=zsh