From bc9d6cf6d532314a2723890df07fa1a917c9a1f5 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sat, 22 Aug 2020 13:22:51 -0400 Subject: 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 --- virtinst/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'virtinst/connection.py') diff --git a/virtinst/connection.py b/virtinst/connection.py index 992e7357..af9d38cc 100644 --- a/virtinst/connection.py +++ b/virtinst/connection.py @@ -385,7 +385,7 @@ class VirtinstConnection(object): return self._uriobj.scheme.startswith("lxc") def is_openvz(self): return self._uriobj.scheme.startswith("openvz") - def is_container(self): + def is_container_only(self): return self.is_lxc() or self.is_openvz() def is_vz(self): return (self._uriobj.scheme.startswith("vz") or -- cgit v1.2.1