summaryrefslogtreecommitdiff
path: root/virtcli
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2015-04-06 16:29:28 -0400
committerCole Robinson <crobinso@redhat.com>2015-04-06 16:29:28 -0400
commitef5552d0aabb000ab81207980040374436ae692b (patch)
tree23db74a4d92ef136e3332857587e6bc277e372bb /virtcli
parent6ccbec6b3013620c8dfd94873889d8a2939570d8 (diff)
downloadvirt-manager-ef5552d0aabb000ab81207980040374436ae692b.tar.gz
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
Diffstat (limited to 'virtcli')
-rw-r--r--virtcli/cliconfig.py2
1 files changed, 1 insertions, 1 deletions
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