Give macOS OSes an own type, so they have their own entry in the list of
OS types.
---
virtManager/create.py | 1 +
virtinst/osdict.py | 5 ++++-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/virtManager/create.py b/virtManager/create.py
index 1107d3c..9eb2399 100644
--- a/virtManager/create.py
+++ b/virtManager/create.py
@@ -965,6 +965,7 @@ class vmmCreate(vmmGObjectUI):
"bsd": _("BSD"),
"generic": _("Generic"),
"linux": _("Linux"),
+ "macos": _("macOS"),
"other": _("Others"),
"solaris": _("Solaris"),
"windows": _("Windows"),
diff --git a/virtinst/osdict.py b/virtinst/osdict.py
index d602611..854f59c 100644
--- a/virtinst/osdict.py
+++ b/virtinst/osdict.py
@@ -244,7 +244,7 @@ class _OSDB(object):
return osname
def list_types(self):
- approved_types = ["linux", "windows", "bsd",
+ approved_types = ["linux", "windows", "bsd", "macos",
"solaris", "other", "generic"]
return approved_types
@@ -423,6 +423,9 @@ class _OsVariant(object):
if self._family in ['openbsd', 'freebsd', 'netbsd']:
return "bsd"
+ if self._family in ['darwin']:
+ return "macos"
+
return "other"
def is_windows(self):
--
2.9.3
_______________________________________________
virt-tools-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/virt-tools-list