qubes/tools: accept qvm-start --no-guid

Lets keep compatibility with older scripts.

QubesOS/qubes-issues#2412
This commit is contained in:
Marek Marczykowski-Górecki 2016-11-02 06:39:53 +01:00
parent 964955758c
commit 5e15db4176
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724
2 changed files with 6 additions and 2 deletions

View File

@ -65,7 +65,7 @@ Options
Do not fail if the qube is already runnning
.. option:: --no-start-guid
.. option:: --no-start-guid, --no-guid
Do not start GUI daemon.

View File

@ -88,7 +88,11 @@ parser.add_argument('--preparing-dvm',
parser.add_argument('--no-start-guid',
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',
action='store_true', default=False,