mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
Python command line tool for configuring and using the OnlyKey hardware password manager. WWW: https://github.com/trustcrypto/python-onlykey PR: 250601 Submitted by: Dmytro Bilokha <dmytro@posteo.net>
31 lines
949 B
Text
31 lines
949 B
Text
# OnlyKey Security KEY
|
|
notify 100 {
|
|
match "system" "USB";
|
|
match "subsystem" "DEVICE";
|
|
match "type" "ATTACH";
|
|
match "vendor" "0x1d50";
|
|
match "product" "0x60fc";
|
|
action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
|
|
};
|
|
|
|
notify 100 {
|
|
match "system" "USB";
|
|
match "subsystem" "DEVICE";
|
|
match "type" "ATTACH";
|
|
match "vendor" "0x16c0";
|
|
match "product" "0x0486";
|
|
action "chgrp u2f /dev/$cdev; chmod g+rw /dev/$cdev";
|
|
};
|
|
|
|
attach 100 {
|
|
match "vendor" "0x1d50";
|
|
match "product" "0x60fc";
|
|
action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
|
|
};
|
|
|
|
attach 100 {
|
|
match "vendor" "0x16c0";
|
|
match "product" "0x0486";
|
|
action "chgrp u2f /dev/$device-name; chmod g+rw /dev/$device-name";
|
|
};
|
|
|