blob: ac8b7e77bf8674743b88b3b7f5b235d96d46cc94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Allow members of group operator to access hardware wallet devices
## Ledger Nano S
#notify 301 {
# match "system" "USB";
# match "subsystem" "DEVICE";
# match "vendor" "0x2c97";
# match "product" "0x0001";
# match "type" "ATTACH";
# action "/bin/chmod g=rw /dev/$cdev";
#};
## SatoshiLabs TREZOR
#notify 301 {
# match "system" "USB";
# match "subsystem" "DEVICE";
# match "vendor" "0x534c";
# match "product" "0x0001";
# match "type" "ATTACH";
# action "/bin/chmod g=rw /dev/$cdev";
#};
## shiftcrypto.ch BitBox02
#notify 301 {
# match "system" "USB";
# match "subsystem" "DEVICE";
# match "vendor" "0x03eb";
# match "product" "0x2403";
# match "type" "ATTACH";
# action "/bin/chmod g=rw /dev/$cdev";
#};
|