summaryrefslogtreecommitdiffstats
path: root/contrib/suse
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-11-03 20:16:01 +1100
committerDamien Miller <djm@mindrot.org>2008-11-03 20:16:01 +1100
commit85dec7346395fcc14887a8cff91b81dc4d2e5304 (patch)
tree4bdabab72507a1a82e1b17704518d517721d797e /contrib/suse
parentf4b39538f45a6d8487fff3cf6b9e80e1293da06d (diff)
- (djm) [contrib/caldera/ssh-host-keygen contrib/suse/rc.sshd]
Make example scripts generate keys with default sizes rather than fixed, non-default 1024 bits; patch from imorgan AT nas.nasa.gov
Diffstat (limited to 'contrib/suse')
-rw-r--r--contrib/suse/rc.sshd6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/suse/rc.sshd b/contrib/suse/rc.sshd
index 573960bf..4d4880d7 100644
--- a/contrib/suse/rc.sshd
+++ b/contrib/suse/rc.sshd
@@ -45,17 +45,17 @@ case "$1" in
start)
if ! test -f /etc/ssh/ssh_host_key ; then
echo Generating /etc/ssh/ssh_host_key.
- ssh-keygen -t rsa1 -b 1024 -f /etc/ssh/ssh_host_key -N ''
+ ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_key -N ''
fi
if ! test -f /etc/ssh/ssh_host_dsa_key ; then
echo Generating /etc/ssh/ssh_host_dsa_key.
- ssh-keygen -t dsa -b 1024 -f /etc/ssh/ssh_host_dsa_key -N ''
+ ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N ''
fi
if ! test -f /etc/ssh/ssh_host_rsa_key ; then
echo Generating /etc/ssh/ssh_host_rsa_key.
- ssh-keygen -t rsa -b 1024 -f /etc/ssh/ssh_host_rsa_key -N ''
+ ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
fi
echo -n "Starting SSH daemon"
## Start daemon with startproc(8). If this fails