mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
domain: conf: Better errors on bad os <type> values
If no <os><type> was specified:
before: unknown OS type no OS type
after : xml error: an os <type> must be specified
If an <os><type> is specified that's not in our capabiliities data:
before: unknown OS type: $type
after : unsupported configuration: no support found for os <type> '$type'
VIR_ERR_OS_TYPE is now unused (as it should be frankly) so drop its strings
as well to save our translators some effort.
(cherry picked from commit 3700c065cd
)
This commit is contained in:
parent
a514d325d5
commit
7d9739f26d
@ -12924,8 +12924,8 @@ virDomainDefParseXML(xmlDocPtr xml,
|
||||
if (VIR_STRDUP(def->os.type, "xen") < 0)
|
||||
goto error;
|
||||
} else {
|
||||
virReportError(VIR_ERR_OS_TYPE,
|
||||
"%s", _("no OS type"));
|
||||
virReportError(VIR_ERR_XML_ERROR, "%s",
|
||||
_("an os <type> must be specified"));
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
@ -12942,8 +12942,9 @@ virDomainDefParseXML(xmlDocPtr xml,
|
||||
}
|
||||
|
||||
if (!virCapabilitiesSupportsGuestOSType(caps, def->os.type)) {
|
||||
virReportError(VIR_ERR_OS_TYPE,
|
||||
"%s", def->os.type);
|
||||
virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
|
||||
_("no support found for os <type> '%s'"),
|
||||
def->os.type);
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user