[libvirt PATCH v2 04/10] util: set system token for system identity

Daniel P. Berrangé berrange at redhat.com
Fri May 7 16:24:42 UTC 2021


Reviewed-by: Michal Privoznik <mprivozn at redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>
---
 src/util/viridentity.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/util/viridentity.c b/src/util/viridentity.c
index 8c939a507e..dabe416037 100644
--- a/src/util/viridentity.c
+++ b/src/util/viridentity.c
@@ -263,6 +263,7 @@ virIdentity *virIdentityGetSystem(void)
 #if WITH_SELINUX
     char *con;
 #endif
+    g_autofree char *token = NULL;
 
     if (!(ret = virIdentityNew()))
         return NULL;
@@ -305,6 +306,12 @@ virIdentity *virIdentityGetSystem(void)
     }
 #endif
 
+    if (!(token = virIdentityEnsureSystemToken()))
+        return NULL;
+
+    if (virIdentitySetSystemToken(ret, token) < 0)
+        return NULL;
+
     return g_steal_pointer(&ret);
 }
 
-- 
2.31.1




More information about the libvir-list mailing list