summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2009-08-12 08:09:52 +0000
committerChristian Ruppert <idl0r@gentoo.org>2009-08-12 08:09:52 +0000
commit4267d06a2955e9945e9d02e845aad28be7d2c380 (patch)
treec930c118253f7442485dbed256970318fdac22fb /net-misc/openssh
parent Install logrotate file (thanks to Christian Bricart), (diff)
downloadgentoo-2-4267d06a2955e9945e9d02e845aad28be7d2c380.tar.gz
gentoo-2-4267d06a2955e9945e9d02e845aad28be7d2c380.tar.bz2
gentoo-2-4267d06a2955e9945e9d02e845aad28be7d2c380.zip
Removed "-b 1024" to use ServerKeyBits option instead.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/openssh')
-rw-r--r--net-misc/openssh/ChangeLog5
-rw-r--r--net-misc/openssh/files/sshd.rc64
2 files changed, 6 insertions, 3 deletions
diff --git a/net-misc/openssh/ChangeLog b/net-misc/openssh/ChangeLog
index 93f691514738..b1245e799c72 100644
--- a/net-misc/openssh/ChangeLog
+++ b/net-misc/openssh/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/openssh
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.355 2009/07/19 05:55:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/ChangeLog,v 1.356 2009/08/12 08:09:52 idl0r Exp $
+
+ 12 Aug 2009; Christian Ruppert <idl0r@gentoo.org> files/sshd.rc6:
+ Removed "-b 1024" to use ServerKeyBits option instead.
19 Jul 2009; Mike Frysinger <vapier@gentoo.org> files/sshd.rc6:
Add checkconfig to reload() #277007 by Michał Górny.
diff --git a/net-misc/openssh/files/sshd.rc6 b/net-misc/openssh/files/sshd.rc6
index 9ede6bbd9120..2e0b44229f2b 100644
--- a/net-misc/openssh/files/sshd.rc6
+++ b/net-misc/openssh/files/sshd.rc6
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/files/sshd.rc6,v 1.26 2009/07/19 05:55:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/files/sshd.rc6,v 1.27 2009/08/12 08:09:52 idl0r Exp $
opts="${opts} reload checkconfig gen_keys"
@@ -33,7 +33,7 @@ checkconfig() {
gen_keys() {
if [ ! -e "${SSHD_CONFDIR}"/ssh_host_key ] ; then
einfo "Generating Hostkey..."
- /usr/bin/ssh-keygen -t rsa1 -b 1024 -f "${SSHD_CONFDIR}"/ssh_host_key -N '' || return 1
+ /usr/bin/ssh-keygen -t rsa1 -f "${SSHD_CONFDIR}"/ssh_host_key -N '' || return 1
fi
if [ ! -e "${SSHD_CONFDIR}"/ssh_host_dsa_key ] ; then
einfo "Generating DSA-Hostkey..."