tools: clarify that qvm-backup needs absolute path

Fixes QubesOS/qubes-issues#3066
This commit is contained in:
Marek Marczykowski-Górecki 2017-10-16 03:09:10 +02:00
parent 9cdb2a8152
commit cbdc2170b4
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724
2 changed files with 5 additions and 4 deletions

View File

@ -66,9 +66,9 @@ Options
Arguments
---------
The first positional parameter is the backup location (directory path, or
command to pipe backup to). After that you may specify the qubes you'd like to
backup. If not specified, all qubes are included.
The first positional parameter is the backup location (absolute directory path,
or command to pipe backup to). After that you may specify the qubes you'd
like to backup. If not specified, all qubes are included.
Authors
-------

View File

@ -77,7 +77,8 @@ no_profile.add_argument('--save-profile', action='store',
no_profile.add_argument("backup_location", action="store", default=None,
nargs='?',
help="Backup location (directory path, or command to pipe backup to)")
help="Backup location (absolute directory path, "
"or command to pipe backup to)")
no_profile.add_argument("vms", nargs="*", action=qubesadmin.tools.VmNameAction,
help="Backup only those VMs")