1999-11-08 06:20:54 +00:00
|
|
|
bin/scp
|
2001-06-08 08:03:26 +00:00
|
|
|
bin/sftp
|
1999-11-20 01:55:53 +00:00
|
|
|
bin/slogin
|
1999-11-08 06:20:54 +00:00
|
|
|
bin/ssh
|
|
|
|
bin/ssh-add
|
|
|
|
bin/ssh-agent
|
|
|
|
bin/ssh-keygen
|
2001-06-08 08:03:26 +00:00
|
|
|
bin/ssh-keyscan
|
2002-03-12 17:50:42 +00:00
|
|
|
etc/rc.d/sshd.sh.sample
|
2002-03-11 15:16:48 +00:00
|
|
|
etc/moduli
|
2002-03-12 17:50:42 +00:00
|
|
|
@unexec if cmp -s %D/etc/ssh_config %D/etc/ssh_config-dist; then rm -f %D/etc/ssh_config; fi
|
|
|
|
@unexec if cmp -s %D/etc/sshd_config %D/etc/sshd_config-dist; then rm -f %D/etc/sshd_config; fi
|
|
|
|
etc/ssh_config-dist
|
|
|
|
etc/sshd_config-dist
|
|
|
|
@exec [ ! -f %D/etc/ssh_config ] && cp %D/etc/ssh_config-dist %D/etc/ssh_config
|
|
|
|
@exec [ ! -f %D/etc/sshd_config ] && cp %D/etc/sshd_config-dist %D/etc/sshd_config
|
1999-11-08 06:20:54 +00:00
|
|
|
sbin/sshd
|
2001-06-08 08:03:26 +00:00
|
|
|
libexec/sftp-server
|
2001-10-03 13:15:16 +00:00
|
|
|
libdata/ssh/Ssh.bin
|
|
|
|
@dirrm libdata/ssh
|
2001-12-01 20:12:14 +00:00
|
|
|
@exec if [ ! -f %D/etc/ssh_host_key ]; then echo ">> Generating a secret RSA1 host key."; %D/bin/ssh-keygen -t rsa1 -N "" -f %D/etc/ssh_host_key; fi
|
|
|
|
@exec if [ ! -f %D/etc/ssh_host_rsa_key ]; then echo ">> Generating a secret RSA host key."; %D/bin/ssh-keygen -t rsa -N "" -f %D/etc/ssh_host_rsa_key; fi
|
|
|
|
@exec if [ ! -f %D/etc/ssh_host_dsa_key ]; then echo ">> Generating a secret DSA host key."; %D/bin/ssh-keygen -t dsa -N "" -f %D/etc/ssh_host_dsa_key; fi
|
1999-11-20 03:55:29 +00:00
|
|
|
@exec if [ ! -x %D/etc/rc.d/sshd.sh ]; then echo "#!/bin/sh" > %D/etc/rc.d/sshd.sh && exec echo "[ -x %D/sbin/sshd ] && %D/sbin/sshd && echo -n ' sshd'" >> %D/etc/rc.d/sshd.sh && exec chmod 0555 %D/etc/rc.d/sshd.sh; fi
|