From 8a4552987fe4d9b152d0f5264678b070991290dd Mon Sep 17 00:00:00 2001 From: enami Date: Fri, 19 Apr 2002 23:12:26 +0000 Subject: [PATCH] Wrap long lines. --- etc/rc.d/sshd | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/etc/rc.d/sshd b/etc/rc.d/sshd index 56b3e467eba5..11c37aacf3a4 100755 --- a/etc/rc.d/sshd +++ b/etc/rc.d/sshd @@ -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 }