aboutsummaryrefslogtreecommitdiff
path: root/network/x11-ssh-askpass/xprofile.sample
diff options
context:
space:
mode:
Diffstat (limited to 'network/x11-ssh-askpass/xprofile.sample')
-rw-r--r--network/x11-ssh-askpass/xprofile.sample14
1 files changed, 0 insertions, 14 deletions
diff --git a/network/x11-ssh-askpass/xprofile.sample b/network/x11-ssh-askpass/xprofile.sample
deleted file mode 100644
index dce0eae0caeda..0000000000000
--- a/network/x11-ssh-askpass/xprofile.sample
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-usessh=${usessh:-yes}
-
-if test "$usessh" = "yes" -a -d $HOME/.ssh ; then
- SSH_ASKPASS="/usr/libexec/x11-ssh-askpass"
- if [ -x $SSH_ASKPASS ] ; then
- export SSH_ASKPASS
- ssh-agent > $HOME/.ssh/agent
- . $HOME/.ssh/agent
- ssh-add
- fi
-fi
-