blob: 47cf444de5dde69c40043b6fb91f425d165bce07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
etc/rc.d/sshd.sh
bin/scp1
@exec ln -fs %f %B/scp
@unexec rm -f %B/scp
bin/ssh1
@exec ln -fs %f %B/ssh
@unexec rm -f %B/ssh
@exec ln -fs %f %B/slogin
@unexec rm -f %B/slogin
bin/ssh-add1
@exec ln -fs %f %B/ssh-add
@unexec rm -f %B/ssh-add
bin/ssh-agent1
@exec ln -fs %f %B/ssh-agent
@unexec rm -f %B/ssh-agent
bin/ssh-askpass1
@exec ln -fs %f %B/ssh-askpass
@unexec rm -f %B/ssh-askpass
bin/ssh-keygen1
@exec ln -fs %f %B/ssh-keygen
@unexec rm -f %B/ssh-keygen
bin/make-ssh-known-hosts1
@exec ln -fs %f %B/make-ssh-known-hosts
@unexec rm -f %B/make-ssh-known-hosts
etc/ssh_config
etc/sshd_config
man/man1/make-ssh-known-hosts1.1.gz
@exec ln -fs %f %B/make-ssh-known-hosts.1.gz
@unexec rm -f %B/make-ssh-known-hosts.1.gz
man/man1/scp1.1.gz
@exec ln -fs %f %B/scp.1.gz
@unexec rm -f %B/scp.1.gz
man/man1/ssh-add1.1.gz
@exec ln -fs %f %B/ssh-add.1.gz
@unexec rm -f %B/ssh-add.1.gz
man/man1/ssh-agent1.1.gz
@exec ln -fs %f %B/ssh-agent.1.gz
@unexec rm -f %B/ssh-agent.1.gz
man/man1/ssh-keygen1.1.gz
@exec ln -fs %f %B/ssh-keygen.1.gz
@unexec rm -f %B/ssh-keygen.1.gz
man/man1/ssh1.1.gz
@exec ln -fs %f %B/ssh.1.gz
@unexec rm -f %B/ssh.1.gz
@exec ln -fs %f %B/slogin.1.gz
@unexec rm -f %B/slogin.1.gz
man/man8/sshd1.8.gz
@exec ln -fs %f %B/sshd.8.gz
@unexec rm -f %B/sshd.8.gz
sbin/sshd1
@exec ln -fs %f %B/sshd
@unexec rm -f %B/sshd
@exec if [ ! -f %D/etc/ssh_host_key ]; then echo "Generating a secret host key.." ; %D/bin/ssh-keygen -N "" -f %D/etc/ssh_host_key; fi
|