blob: f7f4091a25a5a0a9bbbaf0665202475057d849c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# Allow members of _tss group to access tpm device
notify 100 {
match "system" "DEVFS";
match "subsystem" "CDEV";
match "type" "CREATE";
match "cdev" "tpm[0-9]+";
action "chgrp _tss /dev/tpm0; chmod g+rw /dev/tpm0";
};
|