mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
Add missing defaultConsoleTargetType callback for AppArmour
Every instance of virCapsPtr must have the defaultConsoleTargetType field set. * src/security/virt-aa-helper.c: Add defaultConsoleTargetType to virCapsPtr
This commit is contained in:
parent
b2c6231647
commit
07bf96ee3f
@ -685,6 +685,11 @@ caps_mockup(vahControl * ctl, const char *xmlStr)
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int aaDefaultConsoleType(const char *ostype ATTRIBUTE_UNUSED)
|
||||||
|
{
|
||||||
|
return VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_SERIAL;
|
||||||
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
get_definition(vahControl * ctl, const char *xmlStr)
|
get_definition(vahControl * ctl, const char *xmlStr)
|
||||||
{
|
{
|
||||||
@ -703,6 +708,8 @@ get_definition(vahControl * ctl, const char *xmlStr)
|
|||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ctl->caps->defaultConsoleTargetType = aaDefaultConsoleType;
|
||||||
|
|
||||||
if ((guest = virCapabilitiesAddGuest(ctl->caps,
|
if ((guest = virCapabilitiesAddGuest(ctl->caps,
|
||||||
ctl->hvm,
|
ctl->hvm,
|
||||||
ctl->arch,
|
ctl->arch,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user