Date: Thu, 18 Aug 2022 10:41:14 GMT From: =?utf-8?Q?Vin=C3=ADcius=20Zavam?= <egypcio@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: c96974452f03 - main - security/py-yubikey-manager: fix instructions in pkg-message Message-ID: <202208181041.27IAfEiA053040@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by egypcio: URL: https://cgit.FreeBSD.org/ports/commit/?id=c96974452f03a874d4b37bb09a11d135bfbab923 commit c96974452f03a874d4b37bb09a11d135bfbab923 Author: VinÃcius Zavam <egypcio@FreeBSD.org> AuthorDate: 2022-08-18 10:38:55 +0000 Commit: VinÃcius Zavam <egypcio@FreeBSD.org> CommitDate: 2022-08-18 10:38:55 +0000 security/py-yubikey-manager: fix instructions in pkg-message The usbconfig command requires a -d parameter prior to the device. PR: 265901 Reported by: ehaupt@ --- security/py-yubikey-manager/Makefile | 2 +- security/py-yubikey-manager/pkg-message | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/security/py-yubikey-manager/Makefile b/security/py-yubikey-manager/Makefile index 09ad2ef3e431..c72c03d9fdad 100644 --- a/security/py-yubikey-manager/Makefile +++ b/security/py-yubikey-manager/Makefile @@ -1,6 +1,6 @@ PORTNAME= yubikey-manager PORTVERSION= 4.0.9 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/security/py-yubikey-manager/pkg-message b/security/py-yubikey-manager/pkg-message index 4ce046c0daba..850709a66a27 100644 --- a/security/py-yubikey-manager/pkg-message +++ b/security/py-yubikey-manager/pkg-message @@ -4,8 +4,8 @@ In order to use `ykman otp` commands, you need to make sure the uhid(4) driver attaches to the USB device: - # usbconfig ugenX.Y add_quirk UQ_KBD_IGNORE - # usbconfig ugenX.Y reset + # usbconfig -d ugenX.Y add_quirk UQ_KBD_IGNORE + # usbconfig -d ugenX.Y reset The correct device to operate on (ugenX.Y) can be determined using `usbconfig list`.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202208181041.27IAfEiA053040>