diff options
author | green <green@FreeBSD.org> | 2000-05-31 04:43:29 +0800 |
---|---|---|
committer | green <green@FreeBSD.org> | 2000-05-31 04:43:29 +0800 |
commit | 1353fa8e2d4781ec32b1398b21110d3707bed433 (patch) | |
tree | 07ef47e8f1023bb9fedf4510db500cfa5c37b622 /security/openssh | |
parent | 476a42103db7b339b943c33e6e6fbc963de15a5a (diff) | |
download | freebsd-ports-graphics-1353fa8e2d4781ec32b1398b21110d3707bed433.tar.gz freebsd-ports-graphics-1353fa8e2d4781ec32b1398b21110d3707bed433.tar.zst freebsd-ports-graphics-1353fa8e2d4781ec32b1398b21110d3707bed433.zip |
Also generate the DSA key from a package install.
Submitted by: Dmitry Grigorovich <odip@bionet.nsc.ru>
Diffstat (limited to 'security/openssh')
-rw-r--r-- | security/openssh/pkg-plist | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/security/openssh/pkg-plist b/security/openssh/pkg-plist index 7b7bd3ce014..bf5e5195866 100644 --- a/security/openssh/pkg-plist +++ b/security/openssh/pkg-plist @@ -15,5 +15,6 @@ man/man1/ssh-keygen.1.gz man/man1/ssh.1.gz man/man8/sshd.8.gz sbin/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 +@exec if [ ! -f %D/etc/ssh_host_key ]; then echo ">> Generating a secret RSA host key."; %D/bin/ssh-keygen -N "" -f %D/etc/ssh_host_key; fi +@exec if [ ! -f %D/etc/ssh_host_dsa_key ]; then echo ">> Generating a secret DSA host key."; %D/bin/ssh-keygen -d -N "" -f %D/etc/ssh_host_dsa_key; fi @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 |