X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=cmdlineopts.clp;h=f56559816633947f389a14b45ce606435af4327a;hp=dd1e9333744d40ea08c6adb75d9fac3f64508df3;hb=0f66ed4e7d529e6be421019d11bc6b7d9d38c50f;hpb=6c597252744ccc9ba7608188a41a3006e97b20b1 diff --git a/cmdlineopts.clp b/cmdlineopts.clp index dd1e933..f565598 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,nointerfaces,nokernel,nopackages,filesystem:,config:,confdir:,packages:,chroot-scripts:,scripts:,pre-scripts:,debconf:,vmfile,vmsize:,keep_src_list,hostname:,password:,nopassword,grmlrepos,backportrepos,bootappend:,grub:,arch:,insecure,verbose,help,version,force,debug +CMDLINE_OPTS=mirror:,iso:,release:,target:,mntpoint:,debopt:,defaultinterfaces,interactive,nodebootstrap,nointerfaces,nokernel,nopackages,filesystem:,config:,confdir:,packages:,chroot-scripts:,scripts:,pre-scripts:,debconf:,vm,vmfile,vmsize:,keep_src_list,hostname:,password:,nopassword,grmlrepos,backportrepos,bootappend:,grub:,arch:,insecure,verbose,help,version,force,debug _opt_temp=`getopt --name grml-debootstrap -o +m:i:r:t:p:c:d:vhV --long \ $CMDLINE_OPTS -- "$@"` @@ -38,10 +38,13 @@ while :; do --target|-t) # Target partition (/dev/...) or directory shift; _opt_target="$1" ;; - --vmfile) # Virtual machine file + --vm) # Virtual machine image (no file) + _opt_vm="T" + ;; + --vmfile) # Virtual machine file _opt_vmfile="T" ;; - --vmsize) # size of Virtual machine file + --vmsize) # size of Virtual machine file shift; _opt_vmsize="$1" ;; --mntpoint|-p) # Mountpoint used for mounting the target system @@ -107,6 +110,9 @@ while :; do --password) # Use specified password as password for user root shift; _opt_password="$1" ;; + --defaultinterfaces) # Install default /etc/network/interfaces + _opt_defaultinterfaces=T + ;; --nointerfaces) # Skip installation of /etc/network/interfaces _opt_nointerfaces=T ;; @@ -135,7 +141,7 @@ while :; do else _opt_verbose=1; fi ;; --debug) # Execute in debug mode - _opt_debug==T + _opt_debug=T ;; --help|-h) # Print usage information and exit _opt_help=T