forked from pool/openssh
084c35400e
- ssh-askpass: Try a fallback if the other option is not available OBS-URL: https://build.opensuse.org/request/show/717662 OBS-URL: https://build.opensuse.org/package/show/network/openssh?expand=0&rev=192
27 lines
478 B
Bash
27 lines
478 B
Bash
#!/bin/bash
|
|
|
|
SESSION=
|
|
|
|
if [ -n "$KDE_FULL_SESSION" ] ; then
|
|
SESSION=kde
|
|
fi
|
|
|
|
if [ "$DESKTOP_SESSION" = "lxqt" ]; then
|
|
SESSION=kde
|
|
fi
|
|
|
|
GNOME_SSH_ASKPASS="@LIBEXECDIR@/ssh/gnome-ssh-askpass"
|
|
KDE_SSH_ASKPASS="@LIBEXECDIR@/ssh/ksshaskpass"
|
|
|
|
case "$SESSION" in
|
|
kde)
|
|
[ -e $KDE_SSH_ASKPASS ] && exec $KDE_SSH_ASKPASS ${1+"$@"}
|
|
exec $GNOME_SSH_ASKPASS ${1+"$@"}
|
|
;;
|
|
*)
|
|
[ -e GNOME_SSH_ASKPASS ] && exec $GNOME_SSH_ASKPASS ${1+"$@"}
|
|
exec $KDE_SSH_ASKPASS ${1+"$@"}
|
|
;;
|
|
esac
|
|
|