From ef5552d0aabb000ab81207980040374436ae692b Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 6 Apr 2015 16:29:28 -0400 Subject: configure: Add --default-hvs, kill --with-bhyve Takes a comma separated list of HVs, and only shows those as options in the 'Open Connection' wizard. This option can be used to hide the bhyve option as well, so drop --with-bhyve --- virtcli/cliconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'virtcli/cliconfig.py') diff --git a/virtcli/cliconfig.py b/virtcli/cliconfig.py index 8d143710..865ddc90 100644 --- a/virtcli/cliconfig.py +++ b/virtcli/cliconfig.py @@ -86,7 +86,7 @@ class _CLIConfig(object): self.askpass_package = _split_list(_get_param("askpass_packages", "")) self.libvirt_packages = _split_list(_get_param("libvirt_packages", "")) self.default_graphics = _get_param("default_graphics", "spice") - self.with_bhyve = bool(int(_get_param("with_bhyve", "0"))) + self.default_hvs = _split_list(_get_param("default_hvs", "")) self.prefix = None self.gettext_dir = None -- cgit v1.2.1