aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/ssh-askpass
diff options
context:
space:
mode:
authorJustine Smithies <justine@smithies.me.uk>2024-12-17 22:12:37 +0000
committerJustine Smithies <justine@smithies.me.uk>2024-12-17 22:12:37 +0000
commit9356ccbc0196babcfc2d076ad85a994d79cc0046 (patch)
tree2dd155d5b6562add29c99ae95d4769e73b71496a /.local/bin/ssh-askpass
parente98cad6ec1922af77b96307069ffcd41009f7478 (diff)
Changed ssh-askpass to a posix sh script.
Diffstat (limited to '.local/bin/ssh-askpass')
-rwxr-xr-x.local/bin/ssh-askpass14
1 files changed, 0 insertions, 14 deletions
diff --git a/.local/bin/ssh-askpass b/.local/bin/ssh-askpass
deleted file mode 100755
index d3bbc91..0000000
--- a/.local/bin/ssh-askpass
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-# Remember to export SSH_ASKPASS=~/.local/bin/ssh-askpass in your .bashrc
-RESULT=$(pinentry-curses --ttytype=xterm-color --lc-ctype=en_US.UTF8 --ttyname=/dev/tty <<END | grep -E '^(D|ERR)'
-SETDESC Enter your SSH password:
-SETPROMPT
-GETPIN
-END
-)
-
-if [ "$RESULT" == "ERR 111 canceled" ]; then
- exit 255
-else
- echo ${RESULT:2:${#RESULT}-2}
-fi