]> git.eshelyaron.com Git - emacs.git/commitdiff
Extend tramp-otp-password-prompt-regexp
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 23 Sep 2024 14:52:01 +0000 (16:52 +0200)
committerEshel Yaron <me@eshelyaron.com>
Fri, 27 Sep 2024 10:19:07 +0000 (12:19 +0200)
* lisp/net/tramp.el (tramp-otp-password-prompt-regexp): Add TACC
HPC prompt.

(cherry picked from commit 40e0257b1084b0243b5fcc972068fbce41fd9629)

lisp/net/tramp.el

index d8302b159f66abc4a3698c95f72bec6684f9f118..6d1cee041e6799e13fd38a16ae0bc5a063e6afe6 100644 (file)
@@ -700,12 +700,15 @@ The `sudo' program appears to insert a `^@' character into the prompt."
 (defcustom tramp-otp-password-prompt-regexp
   (rx-to-string
    `(: bol (* nonl)
-       ;; JumpCloud.
-       (group (| "Verification code"))
+       (group (|
+        ;; JumpCloud.
+        "Verification code"
+        ;; TACC HPC.  <https://docs.tacc.utexas.edu/basics/mfa/>
+        "TACC Token Code"))
        (* nonl) (any . ,tramp-compat-password-colon-equivalents) (* blank)))
   "Regexp matching one-time password prompts.
 The regexp should match at end of buffer."
-  :version "29.2"
+  :version "30.2"
   :type 'regexp
   :link '(tramp-info-link :tag "Tramp manual" tramp-otp-password-prompt-regexp))