Support -r option as well 0.17
authorMichael Prokop <mika@grml.org>
Wed, 26 Mar 2008 21:45:01 +0000 (22:45 +0100)
committerMichael Prokop <mika@grml.org>
Wed, 26 Mar 2008 21:45:01 +0000 (22:45 +0100)
debian/changelog
grml-debootstrap

index 3438269..6ce7d26 100644 (file)
@@ -1,3 +1,10 @@
+grml-debootstrap (0.17) unstable; urgency=low
+
+  * Support "-r" option as well as "--release" as being documented.
+    Thanks for reporting, Jens Kubieziel.
+
+ -- Michael Prokop <mika@grml.org>  Wed, 26 Mar 2008 22:44:06 +0100
+
 grml-debootstrap (0.16) unstable; urgency=low
 
   * Drop the second passwd call.
index 8c988c9..7de9a27 100755 (executable)
@@ -4,13 +4,13 @@
 # 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: Sam Okt 06 18:01:53 CEST 2007 [mika]
+# Latest change: Mit Mär 26 22:44:03 CET 2008 [mika]
 ################################################################################
 # http://www.debian.org/releases/stable/i386/index.html.en
 
 set -e # exit on any error
 
-VERSION='0.11'
+VERSION='0.17'
 
 # source core functions {{{
 . /etc/grml/lsb-functions
@@ -77,7 +77,7 @@ while [ "$#" -gt "0" ] ; do
             shift
             GROOT=$1
             ;;
-        --release)
+        -r|--release)
             shift
             RELEASE=$1
             ;;