mirror of https://gitee.com/openkylin/libvirt.git
virsh: fix incorrect help text mentioning non-existent network 'id'
This commit is contained in:
parent
c2000841ce
commit
c690cf831d
|
@ -3650,7 +3650,7 @@ static const vshCmdInfo info_network_destroy[] = {
|
|||
};
|
||||
|
||||
static const vshCmdOptDef opts_network_destroy[] = {
|
||||
{"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name, id or uuid")},
|
||||
{"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
|
||||
{NULL, 0, 0, NULL}
|
||||
};
|
||||
|
||||
|
@ -3689,7 +3689,7 @@ static const vshCmdInfo info_network_dumpxml[] = {
|
|||
};
|
||||
|
||||
static const vshCmdOptDef opts_network_dumpxml[] = {
|
||||
{"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name, id or uuid")},
|
||||
{"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
|
||||
{NULL, 0, 0, NULL}
|
||||
};
|
||||
|
||||
|
@ -9329,7 +9329,7 @@ static const vshCmdInfo info_network_edit[] = {
|
|||
};
|
||||
|
||||
static const vshCmdOptDef opts_network_edit[] = {
|
||||
{"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name, id or uuid")},
|
||||
{"network", VSH_OT_DATA, VSH_OFLAG_REQ, N_("network name or uuid")},
|
||||
{NULL, 0, 0, NULL}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue