X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=cmdlineopts.clp;h=0681c6b352b03cc35f84cbe18ec3496201e164c0;hp=04f4be753ec7fb2d31940562eaa597d665ca7654;hb=f84d7f6ddf7ea481d4f9e54e9b8e0cd9730f0bf6;hpb=002c4724050bb1cf041683a319cd09c790b2fb11 diff --git a/cmdlineopts.clp b/cmdlineopts.clp index 04f4be7..0681c6b 100644 --- a/cmdlineopts.clp +++ b/cmdlineopts.clp @@ -12,7 +12,7 @@ # should be handled in the main script, where it belongs. ################################################################################ -CMDLINE_OPTS=mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,nopackages,config:,confdir:,packages:,chroot-scripts:,scripts:,pre-scripts:,debconf:,keep_src_list,hostname:,password:,bootappend:,grub:,arch:,insecure,verbose,help,version +CMDLINE_OPTS=mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,nopackages,filesystem:,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 \ $CMDLINE_OPTS -- "$@"` @@ -44,6 +44,9 @@ while :; do --debopt) # Extra parameters passed to the debootstrap command shift; _opt_debopt="$1" ;; + --filesystem) # Filesystem that should be used + shift; _opt_filesystem="$1" + ;; --interactive) # Use interactive mode (frontend) _opt_interactive=T ;;