summaryrefslogtreecommitdiff
path: root/contrib/suse/openssh.spec
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-08 00:05:31 +1000
committerDamien Miller <djm@mindrot.org>2000-05-08 00:05:31 +1000
commit58e579bcd987397aeeb5f0a7935ffdfa67125f37 (patch)
tree6b09dedeab72d587eafd53f91a49fcfe27c6ef12 /contrib/suse/openssh.spec
parenta3f2a02bc35c5163d435523e764060e92431d6cf (diff)
- Generate DSA host keys during "make key" or RPM installs
Diffstat (limited to 'contrib/suse/openssh.spec')
-rw-r--r--contrib/suse/openssh.spec4
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/suse/openssh.spec b/contrib/suse/openssh.spec
index 7d5d087a8..0f63ef658 100644
--- a/contrib/suse/openssh.spec
+++ b/contrib/suse/openssh.spec
@@ -197,6 +197,10 @@ if [ ! -f /etc/ssh/ssh_host_key -o ! -s /etc/ssh/ssh_host_key ]; then
197 echo "Generating SSH host key..." 197 echo "Generating SSH host key..."
198 /usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' >&2 198 /usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N '' >&2
199fi 199fi
200if [ ! -f /etc/ssh/ssh_host_dsa_key -o ! -s /etc/ssh/ssh_host_dsa_key ]; then
201 echo "Generating SSH DSA host key..."
202 /usr/bin/ssh-keygen -d -f /etc/ssh/ssh_host_dsa_key -N '' >&2
203fi
200if test -r /var/run/sshd.pid 204if test -r /var/run/sshd.pid
201then 205then
202 echo "Restarting the running SSH daemon..." 206 echo "Restarting the running SSH daemon..."