X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=cmdlineopts.clp;h=923cd50d752b2843ba6f2c3780a6d459c3c7bed9;hp=cf8d08a8b3c1426b73e780169eb9305c68690035;hb=06fc8bd266ad5f2ca4f28af7ae636f5db3c3bc57;hpb=ad7c3cfdaa7c6354c951a9dbbad6ada40a1dc082 diff --git a/cmdlineopts.clp b/cmdlineopts.clp index cf8d08a..923cd50 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,filesystem:,config:,confdir:,packages:,chroot-scripts:,scripts:,pre-scripts:,debconf:,vmfile,vmsize:,keep_src_list,hostname:,password:,nopassword,bootappend:,grub:,arch:,insecure,verbose,help,version,force +CMDLINE_OPTS=mirror:,iso:,release:,target:,mntpoint:,debopt:,interactive,nodebootstrap,nopackages,filesystem:,config:,confdir:,packages:,chroot-scripts:,scripts:,pre-scripts:,debconf:,vmfile,vmsize:,keep_src_list,hostname:,password:,nopassword,grmlrepos,bootappend:,grub:,arch:,insecure,verbose,help,version,force _opt_temp=`getopt --name grml-debootstrap -o +m:i:r:t:p:c:d:vhV --long \ $CMDLINE_OPTS -- "$@"` @@ -65,6 +65,7 @@ while :; do --arch) # Target architecutre shift; _opt_arch="$1" ;; + # just for backwards compatibility --insecure) _opt_insecure=T ;; @@ -109,6 +110,9 @@ while :; do --nopassword) # Use specified password as password for user root _opt_nopassword=T ;; + --grmlrepos) # Enable Grml repository + _opt_grmlrepos=T + ;; --bootappend) # Add specified appendline to kernel whilst booting shift; _opt_bootappend="$1" ;;