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
父節點 9cdb2a8152
當前提交 cbdc2170b4
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 063938BA42CFA724
共有 2 個文件被更改,包括 5 次插入4 次删除

查看文件

@ -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
-------

查看文件

@ -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")