Browse Source

Fix manpage generation

Wojtek Porczyk 7 years ago
parent
commit
d7d926edaa

+ 6 - 2
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
 

+ 4 - 0
doc/manpages/qvm-features.rst

@@ -23,6 +23,10 @@ Options
 
    decrease verbosity
 
+.. option:: --unset, --default, --delete, -D
+
+   Unset the feature.
+
 Description
 -----------
 

+ 8 - 0
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
 -------
 

+ 8 - 0
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
 -------
 

+ 1 - 1
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',