From 16e483c9f9df6a8603b85f6639fdc85e456691a9 Mon Sep 17 00:00:00 2001 From: Serge Hallyn Date: Fri, 11 Nov 2022 16:30:14 +0800 Subject: [PATCH] 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 --- virtManager/connection.py | 2 +- virtManager/createconn.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/virtManager/connection.py b/virtManager/connection.py index f6dc5f5b..e1eb2993 100644 --- a/virtManager/connection.py +++ b/virtManager/connection.py @@ -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", diff --git a/virtManager/createconn.py b/virtManager/createconn.py index d30ee091..470e246f 100644 --- a/virtManager/createconn.py +++ b/virtManager/createconn.py @@ -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, "")