aports/main/libfido2/libfido2.pre-install
Umar Getagazov 87a703d307 main/libfido2: upgrade to 1.10.0
This commit also adds a pre-install script to create the plugdev group,
otherwise udev rules would not work.
2022-02-21 09:38:14 +00:00

12 lines
165 B
Bash

#!/bin/sh
addgroup -S plugdev 2>/dev/null
cat <<EOF
*
* To use U2F USB tokens (such as YubiKey), regular users must be members of
* 'plugdev' group.
*
EOF
exit 0