diff options
Diffstat (limited to 'contrib/suse')
-rw-r--r-- | contrib/suse/openssh.spec | 4 | ||||
-rw-r--r-- | contrib/suse/rc.sshd | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/contrib/suse/openssh.spec b/contrib/suse/openssh.spec index 7bd9e0569..62f43e137 100644 --- a/contrib/suse/openssh.spec +++ b/contrib/suse/openssh.spec | |||
@@ -13,7 +13,7 @@ | |||
13 | 13 | ||
14 | Summary: OpenSSH, a free Secure Shell (SSH) protocol implementation | 14 | Summary: OpenSSH, a free Secure Shell (SSH) protocol implementation |
15 | Name: openssh | 15 | Name: openssh |
16 | Version: 5.1p1 | 16 | Version: 5.2p1 |
17 | URL: http://www.openssh.com/ | 17 | URL: http://www.openssh.com/ |
18 | Release: 1 | 18 | Release: 1 |
19 | Source0: openssh-%{version}.tar.gz | 19 | Source0: openssh-%{version}.tar.gz |
@@ -200,7 +200,7 @@ fi | |||
200 | 200 | ||
201 | %files | 201 | %files |
202 | %defattr(-,root,root) | 202 | %defattr(-,root,root) |
203 | %doc ChangeLog OVERVIEW README* | 203 | %doc ChangeLog OVERVIEW README* PROTOCOL* |
204 | %doc TODO CREDITS LICENCE | 204 | %doc TODO CREDITS LICENCE |
205 | %attr(0755,root,root) %dir %{_sysconfdir}/ssh | 205 | %attr(0755,root,root) %dir %{_sysconfdir}/ssh |
206 | %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config | 206 | %attr(0644,root,root) %config(noreplace) %{_sysconfdir}/ssh/ssh_config |
diff --git a/contrib/suse/rc.sshd b/contrib/suse/rc.sshd index 573960bfa..4d4880d7e 100644 --- a/contrib/suse/rc.sshd +++ b/contrib/suse/rc.sshd | |||
@@ -45,17 +45,17 @@ case "$1" in | |||
45 | start) | 45 | start) |
46 | if ! test -f /etc/ssh/ssh_host_key ; then | 46 | if ! test -f /etc/ssh/ssh_host_key ; then |
47 | echo Generating /etc/ssh/ssh_host_key. | 47 | echo Generating /etc/ssh/ssh_host_key. |
48 | ssh-keygen -t rsa1 -b 1024 -f /etc/ssh/ssh_host_key -N '' | 48 | ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_key -N '' |
49 | fi | 49 | fi |
50 | if ! test -f /etc/ssh/ssh_host_dsa_key ; then | 50 | if ! test -f /etc/ssh/ssh_host_dsa_key ; then |
51 | echo Generating /etc/ssh/ssh_host_dsa_key. | 51 | echo Generating /etc/ssh/ssh_host_dsa_key. |
52 | 52 | ||
53 | ssh-keygen -t dsa -b 1024 -f /etc/ssh/ssh_host_dsa_key -N '' | 53 | ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N '' |
54 | fi | 54 | fi |
55 | if ! test -f /etc/ssh/ssh_host_rsa_key ; then | 55 | if ! test -f /etc/ssh/ssh_host_rsa_key ; then |
56 | echo Generating /etc/ssh/ssh_host_rsa_key. | 56 | echo Generating /etc/ssh/ssh_host_rsa_key. |
57 | 57 | ||
58 | ssh-keygen -t rsa -b 1024 -f /etc/ssh/ssh_host_rsa_key -N '' | 58 | ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' |
59 | fi | 59 | fi |
60 | echo -n "Starting SSH daemon" | 60 | echo -n "Starting SSH daemon" |
61 | ## Start daemon with startproc(8). If this fails | 61 | ## Start daemon with startproc(8). If this fails |