Add THANKS file, update changelog and add grml-header to grml-debootstrap.clp
authorMichael Prokop <mika@grml.org>
Mon, 20 Oct 2008 14:12:25 +0000 (16:12 +0200)
committerMichael Prokop <mika@grml.org>
Mon, 20 Oct 2008 14:12:25 +0000 (16:12 +0200)
THANKS [new file with mode: 0644]
debian/changelog
debian/rules
grml-debootstrap.clp

diff --git a/THANKS b/THANKS
new file mode 100644 (file)
index 0000000..79c5625
--- /dev/null
+++ b/THANKS
@@ -0,0 +1,4 @@
+THANKS
+======
+
+Tong Sun <suntong@cpan.org> [several patches/features]
index e79a728..ba95205 100644 (file)
@@ -16,8 +16,13 @@ grml-debootstrap (0.23) unstable; urgency=low
       debootstrap command
     - support KEEP_SRC_LIST to allow user to provide their
       own apt sources.list from /etc/debootstrap/etc/apt/sources.list
       debootstrap command
     - support KEEP_SRC_LIST to allow user to provide their
       own apt sources.list from /etc/debootstrap/etc/apt/sources.list
+    - provide cmdline processing in separate script
+    - added the '-d, --confdir=path' option
+    - added "--nodebootstrap": Skip debootstrap, only do configuration
+      to the target
+    - add -v, --verbose: Increase verbosity
 
 
- -- Michael Prokop <mika@grml.org>  Mon, 06 Oct 2008 00:15:52 +0200
+ -- Michael Prokop <mika@grml.org>  Mon, 20 Oct 2008 16:09:03 +0200
 
 grml-debootstrap (0.22) unstable; urgency=low
 
 
 grml-debootstrap (0.22) unstable; urgency=low
 
index 23340c9..10da65c 100755 (executable)
@@ -47,7 +47,7 @@ binary-indep: build install
        dh_testdir
        dh_testroot
        dh_installchangelogs 
        dh_testdir
        dh_testroot
        dh_installchangelogs 
-       dh_installdocs TODO
+       dh_installdocs TODO THANKS
        dh_installman grml-debootstrap.8
        dh_link
        dh_strip
        dh_installman grml-debootstrap.8
        dh_link
        dh_strip
index b617cd1..496626c 100644 (file)
@@ -1,23 +1,16 @@
 # -*- shell-script -*-
 # -*- shell-script -*-
-
-#
-# shell script command line parameter-processing for:
-#
-# grml-debootstrap - wrapper around debootstrap for installing plain Debian via
-# grml
-#
-# @Author:  Tong SUN
-# @Release: $Revision: 1.3 $
-# @HomeURL: http://xpt.sourceforge.net/
-#
-
+# Filename:      grml-debootstrap.clp
+# Purpose:       shell script command line parameter-processing for grml-debootstrap
+# Authors:       grml-team (grml.org), Tong Sun <suntong@cpan.org>
+# Bug-Reports:   see http://grml.org/bugs/
+# License:       This file is licensed under the GPL v2 or any later version.
+################################################################################
 # @WARNING: Do NOT modify this file without prior contacting the author.
 # This script is use for the command line *logic* processing. It should be
 # as dumb as possible. I.e., it should NOT be more complicated than
 # copy-paste-and-rename from existing code. All *business-logic* processing
 # should be handled in the main script, where it belongs.
 # @WARNING: Do NOT modify this file without prior contacting the author.
 # This script is use for the command line *logic* processing. It should be
 # as dumb as possible. I.e., it should NOT be more complicated than
 # copy-paste-and-rename from existing code. All *business-logic* processing
 # should be handled in the main script, where it belongs.
-
-
+################################################################################
 
 _opt_temp=`getopt --name grml-debootstrap -o +m:i:r:t:p:c:d:vhV --long \
     mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,config:,confdir:,packages::,debconf::,keep_src_list,hostname:,password:,bootappend:,groot:,grub:,verbose,help,version \
 
 _opt_temp=`getopt --name grml-debootstrap -o +m:i:r:t:p:c:d:vhV --long \
     mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,config:,confdir:,packages::,debconf::,keep_src_list,hostname:,password:,bootappend:,groot:,grub:,verbose,help,version \
@@ -113,5 +106,4 @@ while :; do
   shift
 done
 
   shift
 done
 
-
-# End
+## END OF FILE #################################################################