Deleted Added
full compact
sshd (151586) sshd (157653)
1#!/bin/sh
2#
3# $NetBSD: sshd,v 1.18 2002/04/29 08:23:34 lukem Exp $
1#!/bin/sh
2#
3# $NetBSD: sshd,v 1.18 2002/04/29 08:23:34 lukem Exp $
4# $FreeBSD: head/etc/rc.d/sshd 151586 2005-10-23 14:06:53Z yar $
4# $FreeBSD: head/etc/rc.d/sshd 157653 2006-04-11 08:55:27Z flz $
5#
6
7# PROVIDE: sshd
8# REQUIRE: LOGIN cleanvar
9
10. /etc/rc.subr
11
12name="sshd"
13rcvar=`set_rcvar`
14command="/usr/sbin/${name}"
15keygen_cmd="sshd_keygen"
16start_precmd="sshd_precmd"
17pidfile="/var/run/${name}.pid"
18extra_commands="keygen reload"
19
20timeout=300
21
5#
6
7# PROVIDE: sshd
8# REQUIRE: LOGIN cleanvar
9
10. /etc/rc.subr
11
12name="sshd"
13rcvar=`set_rcvar`
14command="/usr/sbin/${name}"
15keygen_cmd="sshd_keygen"
16start_precmd="sshd_precmd"
17pidfile="/var/run/${name}.pid"
18extra_commands="keygen reload"
19
20timeout=300
21
22load_rc_config $name
23
22user_reseed()
23{
24 (
25 seeded=`sysctl -n kern.random.sys.seeded 2>/dev/null`
26 if [ "${seeded}" != "" ] ; then
27 warn "Setting entropy source to blocking mode."
28 echo "===================================================="
29 echo "Type a full screenful of random junk to unblock"

--- 12 unchanged lines hidden (view full) ---

42}
43
44sshd_keygen()
45{
46 (
47 umask 022
48
49 # Can't do anything if ssh is not installed
24user_reseed()
25{
26 (
27 seeded=`sysctl -n kern.random.sys.seeded 2>/dev/null`
28 if [ "${seeded}" != "" ] ; then
29 warn "Setting entropy source to blocking mode."
30 echo "===================================================="
31 echo "Type a full screenful of random junk to unblock"

--- 12 unchanged lines hidden (view full) ---

44}
45
46sshd_keygen()
47{
48 (
49 umask 022
50
51 # Can't do anything if ssh is not installed
50 [ -x /usr/bin/ssh-keygen ] || {
51 warn "/usr/bin/ssh-keygen does not exist."
52 [ -x ${prefix}/bin/ssh-keygen ] || {
53 warn "${prefix}/bin/ssh-keygen does not exist."
52 return 1
53 }
54
54 return 1
55 }
56
55 if [ -f /etc/ssh/ssh_host_key ]; then
57 if [ -f ${etcdir}/ssh/ssh_host_key ]; then
56 echo "You already have an RSA host key" \
58 echo "You already have an RSA host key" \
57 "in /etc/ssh/ssh_host_key"
59 "in ${etcdir}/ssh/ssh_host_key"
58 echo "Skipping protocol version 1 RSA Key Generation"
59 else
60 echo "Skipping protocol version 1 RSA Key Generation"
61 else
60 /usr/bin/ssh-keygen -t rsa1 -b 1024 \
61 -f /etc/ssh/ssh_host_key -N ''
62 ${prefix}/bin/ssh-keygen -t rsa1 -b 1024 \
63 -f ${etcdir}/ssh/ssh_host_key -N ''
62 fi
63
64 fi
65
64 if [ -f /etc/ssh/ssh_host_dsa_key ]; then
66 if [ -f ${etcdir}/ssh/ssh_host_dsa_key ]; then
65 echo "You already have a DSA host key" \
67 echo "You already have a DSA host key" \
66 "in /etc/ssh/ssh_host_dsa_key"
68 "in ${etcdir}/ssh/ssh_host_dsa_key"
67 echo "Skipping protocol version 2 DSA Key Generation"
68 else
69 echo "Skipping protocol version 2 DSA Key Generation"
70 else
69 /usr/bin/ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N ''
71 ${prefix}/bin/ssh-keygen -t dsa -f ${etcdir}/ssh/ssh_host_dsa_key -N ''
70 fi
71
72 fi
73
72 if [ -f /etc/ssh/ssh_host_rsa_key ]; then
74 if [ -f ${etcdir}/ssh/ssh_host_rsa_key ]; then
73 echo "You already have a RSA host key" \
75 echo "You already have a RSA host key" \
74 "in /etc/ssh/ssh_host_rsa_key"
76 "in ${etcdir}/ssh/ssh_host_rsa_key"
75 echo "Skipping protocol version 2 RSA Key Generation"
76 else
77 echo "Skipping protocol version 2 RSA Key Generation"
78 else
77 /usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
79 ${prefix}/bin/ssh-keygen -t rsa -f ${etcdir}/ssh/ssh_host_rsa_key -N ''
78 fi
79 )
80}
81
82sshd_precmd()
83{
80 fi
81 )
82}
83
84sshd_precmd()
85{
84 if [ ! -f /etc/ssh/ssh_host_key -o \
85 ! -f /etc/ssh/ssh_host_dsa_key -o \
86 ! -f /etc/ssh/ssh_host_rsa_key ]; then
86 if [ ! -f ${etcdir}/ssh/ssh_host_key -o \
87 ! -f ${etcdir}/ssh/ssh_host_dsa_key -o \
88 ! -f ${etcdir}/ssh/ssh_host_rsa_key ]; then
87 user_reseed
88 run_rc_command keygen
89 fi
90}
91
89 user_reseed
90 run_rc_command keygen
91 fi
92}
93
92load_rc_config $name
93run_rc_command "$1"
94run_rc_command "$1"