summaryrefslogtreecommitdiff
blob: 15b730be6e099b013bd00585967ab8dec52c5bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/sbin/runscript

depend() {
	need net
}

checkconfig() {
	if [ ! -e /etc/ssh/sshd_config ] ; then
		eerror "You need an /etc/ssh/sshd_config file to run sshd"
		eerror "There is a sample file in  /usr/share/doc/openssh"
		return 1
	fi

	gen_keys
}

gen_keys() {
	if [ ! -e /etc/ssh/ssh_host_key ] ; then
		einfo "Generating Hostkey..."
		/usr/bin/ssh-keygen -b 1024 -f /etc/ssh/ssh_host_key -N ''
	fi
	if [ ! -e /etc/ssh/ssh_host_dsa_key ] ; then
		einfo "Generating DSA-Hostkey..."
		/usr/bin/ssh-keygen -d -f /etc/ssh/ssh_host_dsa_key -N ''
	fi
	if [ ! -e /etc/ssh/ssh_host_rsa_key ] ; then
		einfo "Generating RSA-Hostkey..."
		/usr/bin/ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N ''
	fi
}

start() {
	checkconfig || return 1
	ebegin "Starting sshd"
	start-stop-daemon --start --quiet --exec /usr/sbin/sshd
	eend $?
}

stop() {
	ebegin "Stopping sshd"
	start-stop-daemon --stop --quiet --pidfile /var/run/sshd.pid
	eend $?
}