mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-25 18:55:27 -06:00
Drop some explicit openvz handling
I don't think many, if any, people are using virt-manager with openvz. Drop the specific handling the filesystem UI, users can use the raw XML editor if they need special behavior Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
@@ -329,9 +329,9 @@ class vmmConnection(vmmGObject):
|
||||
getattr(s, "_backend").get_uri_transport)
|
||||
get_uri_port = property(lambda s: getattr(s, "_backend").get_uri_port)
|
||||
get_driver = property(lambda s: getattr(s, "_backend").get_uri_driver)
|
||||
is_container = property(lambda s: getattr(s, "_backend").is_container)
|
||||
is_container_only = property(
|
||||
lambda s: getattr(s, "_backend").is_container_only)
|
||||
is_lxc = property(lambda s: getattr(s, "_backend").is_lxc)
|
||||
is_openvz = property(lambda s: getattr(s, "_backend").is_openvz)
|
||||
is_vz = property(lambda s: getattr(s, "_backend").is_vz)
|
||||
is_xen = property(lambda s: getattr(s, "_backend").is_xen)
|
||||
is_remote = property(lambda s: getattr(s, "_backend").is_remote)
|
||||
|
||||
Reference in New Issue
Block a user