From: Michael Prokop Date: Mon, 20 Oct 2008 14:12:25 +0000 (+0200) Subject: Add THANKS file, update changelog and add grml-header to grml-debootstrap.clp X-Git-Tag: v0.23~17^2 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=d722e05c29b53a6325bc15130e5b9e8c52982500;hp=64e92e2959ac462c7b94a675ebb4fa3dc9e3a191 Add THANKS file, update changelog and add grml-header to grml-debootstrap.clp --- diff --git a/THANKS b/THANKS new file mode 100644 index 0000000..79c5625 --- /dev/null +++ b/THANKS @@ -0,0 +1,4 @@ +THANKS +====== + +Tong Sun [several patches/features] diff --git a/debian/changelog b/debian/changelog index e79a728..ba95205 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 + - 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 Mon, 06 Oct 2008 00:15:52 +0200 + -- Michael Prokop Mon, 20 Oct 2008 16:09:03 +0200 grml-debootstrap (0.22) unstable; urgency=low diff --git a/debian/rules b/debian/rules index 23340c9..10da65c 100755 --- a/debian/rules +++ b/debian/rules @@ -47,7 +47,7 @@ binary-indep: build install dh_testdir dh_testroot dh_installchangelogs - dh_installdocs TODO + dh_installdocs TODO THANKS dh_installman grml-debootstrap.8 dh_link dh_strip diff --git a/grml-debootstrap.clp b/grml-debootstrap.clp index b617cd1..496626c 100644 --- a/grml-debootstrap.clp +++ b/grml-debootstrap.clp @@ -1,23 +1,16 @@ # -*- 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 +# 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. - - +################################################################################ _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 - -# End +## END OF FILE #################################################################