ports/security/py-onlykey/files/onlykey.conf.sample
Kurt Jaeger 5ac98da7c2 New port: security/py-onlykey: cli for the OnlyKey hardware password manager
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>
2020-12-10 21:29:41 +00:00

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";
};