Clearly mark the LXC connections as being libvirt-lxc, to

Written: 2015-08-22
Updated: 2019-12-06
Forwarded: https://github.com/virt-manager/virt-manager/pull/67

avoid confusion due to differing features and configurations.

Gbp-Pq: Name mark-libvirt-lxc.patch
This commit is contained in:
Serge Hallyn 2022-11-11 16:30:14 +08:00 committed by Cong Liu
parent 5740748d62
commit 16e483c9f9
2 changed files with 2 additions and 2 deletions

View File

@ -390,7 +390,7 @@ class vmmConnection(vmmGObject):
"esx": "ESX",
"gsx": "GSX",
"libxl": "libxl",
"lxc": "LXC",
"lxc": "Libvirt-LXC",
"openvz": "OpenVZ",
"phyp": "phyp",
"qemu": "QEMU/KVM",

View File

@ -116,7 +116,7 @@ class vmmCreateConn(vmmGObjectUI):
_add_hv_row(HV_QEMU, "qemu", "QEMU/KVM")
_add_hv_row(HV_QEMU_SESSION, "qemu", "QEMU/KVM " + _("user session"))
_add_hv_row(HV_XEN, "xen", "Xen")
_add_hv_row(HV_LXC, "lxc", "LXC (" + _("Linux Containers") + ")")
_add_hv_row(HV_LXC, "lxc", "Libvirt-LXC (Linux Containers)")
_add_hv_row(HV_BHYVE, "bhyve", "Bhyve")
_add_hv_row(HV_VZ, "vz", "Virtuozzo")
_add_hv_row(-1, None, "")