Wrap long lines.

This commit is contained in:
enami 2002-04-19 23:12:26 +00:00
parent 1524f54e8e
commit 8a4552987f
1 changed files with 16 additions and 9 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# $NetBSD: sshd,v 1.14 2002/03/27 09:15:54 lukem Exp $
# $NetBSD: sshd,v 1.15 2002/04/19 23:12:26 enami Exp $
#
# PROVIDE: sshd
@ -22,32 +22,39 @@ sshd_keygen()
(
umask 022
if [ -f ${sshd_conf_dir}/ssh_host_key ]; then
echo "You already have an RSA host key in ${sshd_conf_dir}/ssh_host_key"
echo "You already have an RSA host key" \
"in ${sshd_conf_dir}/ssh_host_key"
echo "Skipping protocol version 1 RSA Key Generation"
else
/usr/bin/ssh-keygen -t rsa1 -b 1024 -f ${sshd_conf_dir}/ssh_host_key -N ''
/usr/bin/ssh-keygen -t rsa1 -b 1024 \
-f ${sshd_conf_dir}/ssh_host_key -N ''
fi
if [ -f ${sshd_conf_dir}/ssh_host_dsa_key ]; then
echo "You already have a DSA host key in ${sshd_conf_dir}/ssh_host_dsa_key"
echo "You already have a DSA host key" \
"in ${sshd_conf_dir}/ssh_host_dsa_key"
echo "Skipping protocol version 2 DSA Key Generation"
else
/usr/bin/ssh-keygen -t dsa -f ${sshd_conf_dir}/ssh_host_dsa_key -N ''
/usr/bin/ssh-keygen -t dsa \
-f ${sshd_conf_dir}/ssh_host_dsa_key -N ''
fi
if [ -f ${sshd_conf_dir}/ssh_host_rsa_key ]; then
echo "You already have a RSA host key in ${sshd_conf_dir}/ssh_host_rsa_key"
echo "You already have a RSA host key" \
"in ${sshd_conf_dir}/ssh_host_rsa_key"
echo "Skipping protocol version 2 RSA Key Generation"
else
/usr/bin/ssh-keygen -t rsa -f ${sshd_conf_dir}/ssh_host_rsa_key -N ''
/usr/bin/ssh-keygen -t rsa \
-f ${sshd_conf_dir}/ssh_host_rsa_key -N ''
fi
)
}
sshd_precmd()
{
if [ ! -f ${sshd_conf_dir}/ssh_host_key -o ! -f ${sshd_conf_dir}/ssh_host_dsa_key -o \
! -f ${sshd_conf_dir}/ssh_host_rsa_key ]; then
if [ ! -f ${sshd_conf_dir}/ssh_host_key -o \
! -f ${sshd_conf_dir}/ssh_host_dsa_key -o \
! -f ${sshd_conf_dir}/ssh_host_rsa_key ]; then
$0 keygen
fi
}