Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/etc/rc.d Wrap long lines.



details:   https://anonhg.NetBSD.org/src/rev/3627a6c5712e
branches:  trunk
changeset: 525896:3627a6c5712e
user:      enami <enami%NetBSD.org@localhost>
date:      Fri Apr 19 23:12:26 2002 +0000

description:
Wrap long lines.

diffstat:

 etc/rc.d/sshd |  25 ++++++++++++++++---------
 1 files changed, 16 insertions(+), 9 deletions(-)

diffs (59 lines):

diff -r 91e9fce9a312 -r 3627a6c5712e etc/rc.d/sshd
--- a/etc/rc.d/sshd     Fri Apr 19 23:03:09 2002 +0000
+++ b/etc/rc.d/sshd     Fri Apr 19 23:12:26 2002 +0000
@@ -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 @@
        (
        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
 }



Home | Main Index | Thread Index | Old Index