]> git.eshelyaron.com Git - emacs.git/commitdiff
Match OpenBSD doas password prompt in comint
authorNick Gasson <nick@nickg.me.uk>
Fri, 9 Oct 2020 04:57:07 +0000 (06:57 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 9 Oct 2020 04:57:07 +0000 (06:57 +0200)
* lisp/comint.el (comint-password-prompt-regexp): match OpenBSD doas
password prompt. OpenBSD 5.8 replaced sudo with doas in the base
install.

* test/lisp/comint-tests.el (comint-testsuite-password-strings): test
that the doas password prompt is matched (bug#43846).

Copyright-paperwork-exempt: yes

lisp/comint.el
test/lisp/comint-tests.el

index 611947605fb35c524ac78c913df5e48f7c55f553..944e1ae8c06b974e743d6d6d63e56b26b4256754 100644 (file)
@@ -362,6 +362,7 @@ This variable is buffer-local."
 ;; Some implementations of passwd use "Password (again)" as the 2nd prompt.
 ;; Something called "perforce" uses "Enter password:".
 ;; OpenVPN prints a prompt like: "Enter Auth Password:".
+;; OpenBSD doas prints "doas (user@host) password:".
 ;; See ert test `comint-test-password-regexp'.
 (defcustom comint-password-prompt-regexp
   (concat
@@ -370,7 +371,7 @@ This variable is buffer-local."
     '("Enter" "enter" "Enter same" "enter same" "Enter the" "enter the"
       "Enter Auth" "enter auth" "Old" "old" "New" "new" "'s" "login"
       "Kerberos" "CVS" "UNIX" " SMB" "LDAP" "PEM" "SUDO"
-      "[sudo]" "Repeat" "Bad" "Retype")
+      "[sudo]" "doas" "Repeat" "Bad" "Retype")
     t)
    ;; Allow for user name to precede password equivalent (Bug#31075).
    " +.*\\)"
index 5b593409027ff68ed43d1e02261d1df2c38849d7..923f588e9e655d39f12c5d5028cf83681c085232 100644 (file)
@@ -39,6 +39,7 @@
     "Passphrase for key root@GNU.ORG: " ; plink
     "[sudo] password for user:" ; Ubuntu sudo
     "[sudo] user 的密码:" ; localized
+    "doas (user@host) password:" ; OpenBSD doas
     "PIN for user:"        ; Bug#35523
     "Password (again):"
     "Enter password:"