From: Peter Krempa Date: Fri, 17 Feb 2023 15:48:35 +0000 (+0100) Subject: docs: ACL: Mention the ACL object name along with the corresponding libvirt object... X-Git-Tag: v9.1.0-rc1~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9ee6f1d5741db1a7eb6908ca1409a787b17f4d2;p=thirdparty%2Flibvirt.git docs: ACL: Mention the ACL object name along with the corresponding libvirt object name It's not trivial to figure out the ACL object name from our documentation. Add it above the table outlining existing permissions. Signed-off-by: Peter Krempa Reviewed-by: Daniel P. Berrangé --- diff --git a/scripts/genaclperms.py b/scripts/genaclperms.py index eaf4a3d17d..527005dd98 100755 --- a/scripts/genaclperms.py +++ b/scripts/genaclperms.py @@ -91,7 +91,7 @@ for obj in sorted(perms.keys()): objname = obj.lower().replace("_", "-") olink = "object_" + objname - print('

%s

' % (olink, klass)) + print('

%s - %s

' % (olink, objname, klass)) print(' ') print(' ') print(' ')