uru4000: Work-around SELinux AVC warnings when driver starts
Work-around SELinux AVC warnings caused by p11-kit (which is an NSS dependency) trying to load the root user's p11-kit configs. We disable this feature using the P11_KIT_NO_USER_CONFIG envvar. See https://bugzilla.redhat.com/show_bug.cgi?id=1688583
This commit is contained in:
parent
ca26e85fd4
commit
b121fa2cc9
1 changed files with 3 additions and 0 deletions
|
@ -1340,6 +1340,9 @@ static int dev_init(struct fp_img_dev *dev, unsigned long driver_data)
|
|||
goto out;
|
||||
}
|
||||
|
||||
/* Disable loading p11-kit's user configuration */
|
||||
g_setenv ("P11_KIT_NO_USER_CONFIG", "1", TRUE);
|
||||
|
||||
/* Initialise NSS early */
|
||||
rv = NSS_NoDB_Init(".");
|
||||
if (rv != SECSuccess) {
|
||||
|
|
Loading…
Reference in a new issue