diff options
author | itojun <itojun@pkgsrc.org> | 2000-05-31 15:32:44 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2000-05-31 15:32:44 +0000 |
commit | e1270396ddf04d55aa2b5f8825e2ce3655021457 (patch) | |
tree | d4736c8127eb172cf35deb8aad91c8e5de85584a /security/openssh/pkg | |
parent | 82a9b0ca8e70646e3e0a6dacf42897992a17a8ce (diff) | |
download | pkgsrc-e1270396ddf04d55aa2b5f8825e2ce3655021457.tar.gz |
upgrade to 2.1.0p3.
there are too many changes to mention here.
the biggest change would be the addition of SSH protocol version 2 (uses DSA).
Diffstat (limited to 'security/openssh/pkg')
-rw-r--r-- | security/openssh/pkg/PLIST | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/security/openssh/pkg/PLIST b/security/openssh/pkg/PLIST index 37b9e1dbc98..3a8a4dc21e7 100644 --- a/security/openssh/pkg/PLIST +++ b/security/openssh/pkg/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2000/01/27 17:12:06 hubertf Exp $ +@comment $NetBSD: PLIST,v 1.3 2000/05/31 15:32:44 itojun Exp $ bin/ssh bin/scp bin/slogin @@ -15,9 +15,12 @@ man/man1/ssh-agent.1 man/man1/ssh-keygen.1 man/man8/sshd.8 share/examples/ssh/ssh_config +@comment share/examples/ssh/ssh_prng_cmds share/examples/ssh/sshd_config @exec if [ ! -d @SSH_CONF_DIR@ ]; then echo "Creating directory @SSH_CONF_DIR@ for ssh config files.." ; mkdir -p @SSH_CONF_DIR@; fi @exec if [ ! -f @SSH_CONF_DIR@/ssh_config ]; then echo "Installing example ssh_config in @SSH_CONF_DIR@.." ; /usr/bin/install -c -o root -g wheel -m 0644 %D/share/examples/ssh/ssh_config @SSH_CONF_DIR@; fi @exec if [ ! -f @SSH_CONF_DIR@/sshd_config ]; then echo "Installing example sshd_config in @SSH_CONF_DIR@.." ; /usr/bin/install -c -o root -g wheel -m 0644 %D/share/examples/ssh/sshd_config @SSH_CONF_DIR@; fi -@exec if [ ! -f @SSH_CONF_DIR@/ssh_host_key ]; then echo "Generating a secret host key in @SSH_CONF_DIR@.." ; %D/bin/ssh-keygen -N "" -f @SSH_CONF_DIR@/ssh_host_key; fi +@comment @exec if [ ! -f @SSH_CONF_DIR@/ssh_prng_cmds ]; then echo "Installing example ssh_prng_cmds in @SSH_CONF_DIR@.." ; /usr/bin/install -c -o root -g wheel -m 0644 %D/share/examples/ssh/ssh_prng_cmds @SSH_CONF_DIR@; fi +@exec if [ ! -f @SSH_CONF_DIR@/ssh_host_key ]; then echo "Generating an RSA secret host key in @SSH_CONF_DIR@.." ; %D/bin/ssh-keygen -N "" -f @SSH_CONF_DIR@/ssh_host_key; fi +@exec if [ ! -f @SSH_CONF_DIR@/ssh_host_dsa_key ]; then echo "Generating a DSA secret host key in @SSH_CONF_DIR@.." ; %D/bin/ssh-keygen -d -N "" -f @SSH_CONF_DIR@/ssh_host_dsa_key; fi @dirrm share/examples/ssh |