buildrootschalter/package/openssh/S50sshd

73 lines
1.3 KiB
Plaintext
Raw Normal View History

2007-07-23 13:00:59 +02:00
#!/bin/sh
#
# sshd Starts sshd.
#
# Make sure the ssh-keygen progam exists
[ -f /usr/bin/ssh-keygen ] || exit 0
# Check for the SSH1 RSA key
if [ ! -f /etc/ssh_host_key ] ; then
echo Generating RSA Key...
/usr/bin/ssh-keygen -t rsa1 -f /etc/ssh_host_key -C '' -N ''
fi
# Check for the SSH2 RSA key
if [ ! -f /etc/ssh_host_rsa_key ] ; then
echo Generating RSA Key...
/usr/bin/ssh-keygen -t rsa -f /etc/ssh_host_rsa_key -C '' -N ''
fi
# Check for the SSH2 DSA key
if [ ! -f /etc/ssh_host_dsa_key ] ; then
echo Generating DSA Key...
echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR!
echo
/usr/bin/ssh-keygen -t dsa -f /etc/ssh_host_dsa_key -C '' -N ''
2007-07-23 13:00:59 +02:00
fi
# Check for the SSH2 ECDSA key
if [ ! -f /etc/ssh_host_ecdsa_key ]; then
echo Generating ECDSA Key...
echo THIS CAN TAKE A MINUTE OR TWO DEPENDING ON YOUR PROCESSOR!
echo
/usr/bin/ssh-keygen -t ecdsa -f /etc/ssh_host_ecdsa_key -C '' -N ''
fi
2007-07-23 13:00:59 +02:00
umask 077
start() {
echo -n "Starting sshd: "
2007-07-23 13:00:59 +02:00
/usr/sbin/sshd
touch /var/lock/sshd
echo "OK"
}
2007-07-23 13:00:59 +02:00
stop() {
echo -n "Stopping sshd: "
killall sshd
2007-07-23 13:00:59 +02:00
rm -f /var/lock/sshd
echo "OK"
2007-07-23 13:00:59 +02:00
}
restart() {
stop
start
}
2007-07-23 13:00:59 +02:00
case "$1" in
start)
start
2007-07-23 13:00:59 +02:00
;;
stop)
stop
2007-07-23 13:00:59 +02:00
;;
restart|reload)
restart
2007-07-23 13:00:59 +02:00
;;
*)
echo "Usage: $0 {start|stop|restart}"
2007-07-23 13:00:59 +02:00
exit 1
esac
exit $?