diff --git a/README.md b/README.md index ab517e8..98e7ef2 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,8 @@ SELECTING INITIAL IMAGE TO BUILD: TEMPLATE Specify the template to install from -l, --list List available templates --arch {x86_64,i386,i686,ia64,armv71,ppc,ppc64,ppc64le,aarch64,sparc64,s390,s390x} - Specify architecture (defaults to same architecture - you're running) + Specify architecture in case there are multiple + choices (defaults to same architecture as upvm) --info Print virt-builder metadata for chosen template IMPORTANT HARDWARE-LEVEL (VM) OPTIONS: @@ -213,7 +213,7 @@ TOTALLY OPTIONAL HARDWARE-LEVEL (VM) OPTIONS: created disk image (may be used more than once; NOTE: to pass options that start with a dash, use '--vinstall-arg=--option' or '-I=-o', for example: - '-I=--cpu=core2duo -I=--video=cirrus + '-I=--cpu=core2duo -I=--video=cirrus -I=--boot=uefi -I=--graphics=vnc,password=mypass') ABOUT CONFIG FILES: @@ -225,6 +225,6 @@ ABOUT CONFIG FILES: override config file values which override defaults. VERSION: - upvm v0.10.0 last mod 2016/02/02 + upvm v0.10.3 last mod 2016/02/09 See to report bugs or RFEs ``` diff --git a/modules/argparser.py b/modules/argparser.py index 226f355..ca8870a 100644 --- a/modules/argparser.py +++ b/modules/argparser.py @@ -241,7 +241,7 @@ def parse(): help="If this option is omitted, a single NIC will be created in the guest and connected to a bridge (if one exists) or the 'default' virtual network; if this option is used once it will modify the default NIC; this option can be specified multiple times to setup more than one NIC; in its simplest form OPTIONS can be 'bridge=BRIDGE' (where BRIDGE is a bridge device name, e.g., 'br0') or 'network=NAME' (where NAME is a virtual network, e.g., 'default'); more complicated example: '-w network=default -w bridge=br0' (where the 1st NIC would be connected to the default private network and the 2nd would be connected to the [presumably public] bridge br0)") grpBB.add_argument( '--vinstall-arg', '-I', metavar='ARG', action='append', - help="Add ARG as an extra option/argument to the virt-install command which creates a guest from the vb-created disk image (may be used more than once; NOTE: to pass options that start with a dash, use '--vinstall-arg=--option' or '-I=-o', for example: '-I=--cpu=core2duo -I=--video=cirrus -I=--graphics=vnc,password=mypass')") + help="Add ARG as an extra option/argument to the virt-install command which creates a guest from the vb-created disk image (may be used more than once; NOTE: to pass options that start with a dash, use '--vinstall-arg=--option' or '-I=-o', for example: '-I=--cpu=core2duo -I=--video=cirrus -I=--boot=uefi -I=--graphics=vnc,password=mypass')") # Parse and return if haveArgcomplete: argcomplete.autocomplete(p)