X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=cmdlineopts.clp;h=cefb76f018f53686df9e592dd4107d4ee331f999;hp=acb9489abfc045b8d02f80afff9ee7a4343bfd8a;hb=0fda360ab5986be65e7ef7354ad92b9ead7e5d85;hpb=ecdab0450adbba4a475979cca7bce3807b5ab908 diff --git a/cmdlineopts.clp b/cmdlineopts.clp index acb9489..cefb76f 100644 --- a/cmdlineopts.clp +++ b/cmdlineopts.clp @@ -1,5 +1,5 @@ # -*- shell-script -*- -# Filename: grml-debootstrap.clp +# Filename: cmdlineopts.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/ @@ -12,9 +12,11 @@ # should be handled in the main script, where it belongs. ################################################################################ +CMDLINE_OPTS=mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,config:,confdir:,packages::,chroot-scripts:,scripts::,pre-scripts::,debconf::,keep_src_list,hostname:,password:,bootappend:,grub:,arch:,insecure,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::,chroot-scripts::,scripts::,debconf::,keep_src_list,hostname:,password:,bootappend:,grub:,arch:,verbose,help,version \ - -- "$@"` + $CMDLINE_OPTS -- "$@"` + if [ $? != 0 ]; then eerror "Try 'grml-debootstrap --help' for more information."; eend 1; exit 1 fi @@ -51,6 +53,9 @@ while :; do --arch) # Target architecutre shift; _opt_arch="$1" ;; + --insecure) + _opt_insecure=T + ;; # # == Configuration options @@ -68,6 +73,10 @@ while :; do shift; _opt_debconf="$1" _opt_debconf_set=T ;; + --pre-scripts) # Execute scripts from specified directory (before chroot-scripts). + shift; _opt_pre_scripts="$1" + _opt_pre_scripts_set=T + ;; --scripts) # Execute scripts from specified directory shift; _opt_scripts="$1" _opt_scripts_set=T