blob: 5ff2fa54e4034fa2624435f343faa1d3c468d66d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
cat <<'EOF'
To use ssh-ident, add symlinks to ssh-ident from a directory in your PATH, ex:
mkdir ~/bin
echo 'export PATH=~/bin:$PATH' >> ~/.bashrc
ln -s /usr/bin/ssh-ident ~/bin/ssh
ln -s /usr/bin/ssh-ident ~/bin/scp
... etc. ...
See /usr/share/doc/ssh-ident/README for more information.
EOF
}
|