blob: 97f660c506de2729b808cb883ee8d48b08cd9329 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Allow members of group cups to access generic USB printer devices
notify 100 {
match "system" "USB";
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "intclass" "0x07";
match "intsubclass" "0x01";
match "intprotocol" "(0x01|0x02|0x03)";
action "chgrp cups /dev/$cdev; chmod g+rw /dev/$cdev";
};
|