diff --git a/doc/manpages/qubes-create.rst b/doc/manpages/qubes-create.rst index e6f0ac0f..9a3d2e2d 100644 --- a/doc/manpages/qubes-create.rst +++ b/doc/manpages/qubes-create.rst @@ -18,9 +18,13 @@ Options show help message and exit -.. option:: --qubesxml=XMLFILE +.. option:: --verbose, -v - Where to put this new file in question. + Increase verbosity. + +.. option:: --quiet, -q + + Decrease verbosity. .. option:: --property=NAME=VALUE, --prop=NAME=VALUE, -p NAME=VALUE diff --git a/doc/manpages/qvm-features.rst b/doc/manpages/qvm-features.rst index efbdce0c..5f62bd92 100644 --- a/doc/manpages/qvm-features.rst +++ b/doc/manpages/qvm-features.rst @@ -23,6 +23,10 @@ Options decrease verbosity +.. option:: --unset, --default, --delete, -D + + Unset the feature. + Description ----------- diff --git a/doc/manpages/qvm-pause.rst b/doc/manpages/qvm-pause.rst index 15368cf6..861b4a98 100644 --- a/doc/manpages/qvm-pause.rst +++ b/doc/manpages/qvm-pause.rst @@ -23,6 +23,14 @@ Options Decrease verbosity. +.. option:: --all + + Pause all the qubes. + +.. option:: --exclude=EXCLUDE + + Exclude the qube from :option:`--all`. + Authors ------- diff --git a/doc/manpages/qvm-unpause.rst b/doc/manpages/qvm-unpause.rst index 24c644ce..3705c3b2 100644 --- a/doc/manpages/qvm-unpause.rst +++ b/doc/manpages/qvm-unpause.rst @@ -23,6 +23,14 @@ Options Decrease verbosity. +.. option:: --all + + Unause all the qubes. + +.. option:: --exclude=EXCLUDE + + Exclude the qube from :option:`--all`. + Authors ------- diff --git a/qubes/tools/qvm_features.py b/qubes/tools/qvm_features.py index 3e5f5069..9b135ea0 100644 --- a/qubes/tools/qvm_features.py +++ b/qubes/tools/qvm_features.py @@ -32,7 +32,7 @@ import sys import qubes parser = qubes.tools.QubesArgumentParser( - want_vm=True, + vmname_nargs=1, description='manage domain\'s features') parser.add_argument('--request',