We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dee2a84 commit cf31148Copy full SHA for cf31148
1 file changed
archinstall/lib/disk/fido.py
@@ -112,6 +112,8 @@ def fido2_enroll(
112
pw_inputted = False
113
pin_inputted = False
114
115
+ info('You might need to touch the FIDO2 device to unlock it if no prompt comes up after 3 seconds')
116
+
117
while worker.is_alive():
118
if pw_inputted is False:
119
if bytes(f'please enter current passphrase for disk {dev_path}', 'UTF-8') in worker._trace_log.lower():
@@ -121,5 +123,3 @@ def fido2_enroll(
121
123
if bytes('please enter security token pin', 'UTF-8') in worker._trace_log.lower():
122
124
worker.write(bytes(getpass.getpass(' '), 'UTF-8'))
125
pin_inputted = True
-
- info('You might need to touch the FIDO2 device to unlock it if no prompt comes up after 3 seconds')
0 commit comments