qubes/tools: accept qvm-start --no-guid
Lets keep compatibility with older scripts. QubesOS/qubes-issues#2412
This commit is contained in:
parent
964955758c
commit
5e15db4176
@ -65,7 +65,7 @@ Options
|
|||||||
|
|
||||||
Do not fail if the qube is already runnning
|
Do not fail if the qube is already runnning
|
||||||
|
|
||||||
.. option:: --no-start-guid
|
.. option:: --no-start-guid, --no-guid
|
||||||
|
|
||||||
Do not start GUI daemon.
|
Do not start GUI daemon.
|
||||||
|
|
||||||
|
@ -88,7 +88,11 @@ parser.add_argument('--preparing-dvm',
|
|||||||
|
|
||||||
parser.add_argument('--no-start-guid',
|
parser.add_argument('--no-start-guid',
|
||||||
action='store_false', dest='start_guid', default=True,
|
action='store_false', dest='start_guid', default=True,
|
||||||
help='do not start the gui daemon (ignored)')
|
help='do not start the gui daemon')
|
||||||
|
|
||||||
|
parser.add_argument('--no-guid',
|
||||||
|
action='store_false', dest='start_guid',
|
||||||
|
help='same as --no-start-guid')
|
||||||
|
|
||||||
parser.add_argument('--skip-if-running',
|
parser.add_argument('--skip-if-running',
|
||||||
action='store_true', default=False,
|
action='store_true', default=False,
|
||||||
|
Loading…
Reference in New Issue
Block a user